Jump to content
  • 0

FluxCP CSS Installation


Xephyras

Question


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  51
  • Reputation:   0
  • Joined:  06/16/12
  • Last Seen:  

Hello,

Does anybody know how to install the Free RO Templates (Red & Blue) by JiGs GFX?

When you download it and unzip it, it only contains a "css" folder. But if you copy that folder to the "css" folder of FluxCP, then it doesn't work properly.

So I was wondering what else I should do to make it work?

Thanks a lot in advance!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  68
  • Reputation:   12
  • Joined:  09/05/12
  • Last Seen:  

I don't know this "Free RO Templates" but ALL of the templates for Flux should be placed on /themes/ folder as in the whole folder and not the css only. Then you need to change config/application.php

'ThemeName'			=> 'default',				   // The theme name of the theme you would like to use.  Themes are in FLUX_ROOT/themes.

Edited by Heero Yuy
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  51
  • Reputation:   0
  • Joined:  06/16/12
  • Last Seen:  

I already did that, but then the site as a whole doesn't work anymore.

It has only a few files in it (around 20-30). So I think it's only the lay-out.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  225
  • Reputation:   39
  • Joined:  01/20/12
  • Last Seen:  

As to what I see those css is for default fluxcp theme ( Maybe a link to download the files is enough for us to troubleshoot your problem ), if it's just a css then all you have to do is to upload it in your theme's css folder and include it in the header after flux.css so that it'll override the default css

  1. Open 'themes/your_theme/css' and upload the files there.
  2. Open 'themes/your_theme/header.php'
  3. At around line 12 find:
    <link href="<?php echo $this->themePath('css/flux/unitip.css') ?>" rel="stylesheet" type="text/css" media="screen" title="" charset="utf-8" />

    and insert the code below after it

    <link rel="stylesheet" href="<?php echo $this->themePath('css/downloaded_css.css') ?>" type="text/css" media="screen" title="" charset="utf-8" />


    change the 'downloaded_css.css' to the filename of your downloa

  4. Now see if there are any differences

Edited by Jupeto
Link to comment
Share on other sites

×
×
  • Create New...