Shape 5

Joomla Templates => Game World - Club => : itye1970 April 04, 2016, 02:25:13 AM



: How do you change the colour of the top_row1_1
: itye1970 April 04, 2016, 02:25:13 AM
on my site www.pcsimulators.org i have placed the following text  "The Big PC Simulator Poll.
Vote for your favorite simulator in our Facbook Group Poll closing soon so hurry and cast your vote HERE!"

The background colour is brown? how can I change this? Screenshot attached


: Re: How do you change the colour of the top_row1_1
: mikek April 04, 2016, 07:35:21 AM
Hello,

It's not brown, it's transparent. That row has a transparent background on it that shows the color beneath it. That's controlled here in template.css:

#s5_top_row1_area1.s5_no_custom_bg {
    background: rgba(15, 15, 15, 0.68) none repeat scroll 0 0;
    color: #ffffff;
}

You can change it to the following in custom.css:

#s5_top_row1_area1.s5_no_custom_bg {
    background:#000000 !important;
}