Shape 5

Joomla Templates => Hexicon Gamer - Club => : wilson camacho August 29, 2012, 12:07:08 AM



: changing background colors
: wilson camacho August 29, 2012, 12:07:08 AM
hi

 i would like to change the background colors of  the articles titles,  vertical accordion and the drop down of the menu items?



: Re: changing background colors
: pmiddleton August 30, 2012, 09:41:14 AM
Hi Wilson

URL?


: Re: changing background colors
: wilson camacho August 30, 2012, 02:05:18 PM
this is my url http://www.sandungatv.org/index.php


: Re: changing background colors
: mikenicoll August 31, 2012, 03:50:25 AM
Article Titles:

The background is currently an image so if you want a different background color you can erase the image and add a solid color to the background like #FFFFFF; or you can edit the image itself and color the image then re-upload it.

The color portion of the below code controls your articles text color specifically and the background would be the image

com_content_css (line 56)

.contentheading {
    background: url("../images/s5_title_bg.png") no-repeat scroll right top transparent;
    color: #FFFFFF;
    float: left;
    font-size: 1.6em;
    height: 45px;
    padding-left: 20px;
    padding-right: 68px;
    padding-top: 14px;
    text-shadow: 1px 1px #000000;

For the Vertical Accordian:

template.css (line 941)

#s5_va_accordion {
    margin-bottom: -7px;
}

Add whatever background color you like below the margin-bottom

background: #FFFFFF;

For the drop down menus:

s5_flex_menu (line 108)

#subMenusContainer div.s5_sub_wrap ul ul, #subMenusContainer div.s5_sub_wrap_lower ul ul, #subMenusContainer div.s5_sub_wrap_rtl ul ul, #subMenusContainer div.s5_sub_wrap_lower_rtl ul ul {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    box-shadow: none;
    margin: 0;
    padding: 8px 0 10px;

Change the background to whatever you want like before


: Re: changing background colors
: wilson camacho September 07, 2012, 12:49:39 AM


thank you