Add option for narrow navbar instead of the bootstrap default

thick version
This commit is contained in:
Christian Vogeley
2014-02-22 16:10:46 +01:00
parent bbea85f809
commit f9eddb89ef
4 changed files with 35 additions and 0 deletions
+4
View File
@@ -14,6 +14,7 @@ if(! $a->install) {
$nav_colour = get_pconfig($uid, "redbasic", "nav_colour");
// Load the owners pconfig
$narrow_navbar = get_pconfig($uid,'redbasic','narrow_navbar');
$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
$link_colour = get_pconfig($uid, "redbasic", "link_colour");
$schema = get_pconfig($uid,'redbasic','schema');
@@ -213,3 +214,6 @@ echo str_replace(array_keys($options), array_values($options), $x);
if($sloppy_photos && file_exists('view/theme/redbasic/css/sloppy_photos.css')) {
echo file_get_contents('view/theme/redbasic/css/sloppy_photos.css');
}
if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) {
echo file_get_contents('view/theme/redbasic/css/narrow_navbar.css');
}