Editing Menu Button colours on DriveRally - Joomla! Forum - community, help and support
hi
this first post, complete newbie joomla , template editing.
can tell me how change colour of driverally menu buttons lime green more subtle colour, perhaps darker green. mouse hover colour need changing subtler colour too.
thanks
rich
this first post, complete newbie joomla , template editing.
can tell me how change colour of driverally menu buttons lime green more subtle colour, perhaps darker green. mouse hover colour need changing subtler colour too.
thanks
rich
are using default protostar template?
if so, there 2 basic colour settings can change administrative side of joomla. "template colour" , "background colour". settings changed in
extensions -> template manager. click on protostar in styles column.
in advanced tab can change template colour. effects color of top border, <a> tags , .nav-pill classes.
you can not change template colour css, loaded php in index.php of protostar template. can remove lines of php index.php if want style these things in stylesheet.
if so, there 2 basic colour settings can change administrative side of joomla. "template colour" , "background colour". settings changed in
extensions -> template manager. click on protostar in styles column.
in advanced tab can change template colour. effects color of top border, <a> tags , .nav-pill classes.
you can not change template colour css, loaded php in index.php of protostar template. can remove lines of php index.php if want style these things in stylesheet.
code: select all
body.site
{
border-top: 3px solid <?php echo $this->params->get('templatecolor');?>;
background-color: <?php echo $this->params->get('templatebackgroundcolor');?>
}
a
{
color: <?php echo $this->params->get('templatecolor');?>;
}
.navbar-inner, .nav-list > .active > a, .nav-list > .active > a:hover, .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover,
.btn-primary
{
background: <?php echo $this->params->get('templatecolor');?>;
}
Comments
Post a Comment