Shape 5

Joomla Templates => Curb Appeal - Club => : cspgsl February 19, 2018, 07:33:23 AM



: custom_5 background
: cspgsl February 19, 2018, 07:33:23 AM
At http://taxforumcanada.ca/ I am trying to set the background colour of the custom_5 position so it is from edge to edge. Currently, i cannot get it to cover all the way to the right. Where would I change this?

Thanks


: Re: custom_5 background
: mikek February 19, 2018, 08:05:11 AM
Hello,

That area is meant to be split. You would need to modify the index.php file and look for:

#s5_pos_custom_5 {
background: #<?php echo change_Color($s5_highlightcolor1,'+80'); ?>; /* Old browsers */
background: -moz-linear-gradient(left, #F6F6F6 49%, #<?php echo change_Color($s5_highlightcolor1,'+80'); ?> 49%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #F6F6F6 49%,#<?php echo change_Color($s5_highlightcolor1,'+80'); ?> 49%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to left, #F6F6F6 49%,#<?php echo change_Color($s5_highlightcolor1,'+80'); ?> 49%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

You should be able to replace that entire section with this:

#s5_pos_custom_5 {
background: #<?php echo change_Color($s5_highlightcolor1,'+80'); ?>;
}


: Re: custom_5 background
: cspgsl February 19, 2018, 08:09:33 AM
Thanks Mike