Jump to content
  • 0

FluxCP CSS Installation


Question

Posted

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!

3 answers to this question

Recommended Posts

Posted (edited)

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
Posted (edited)

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...