Get an access to all 94 items designed and developed by AS Designing team plus all the future items which will be released over the course of your club subscription. Price starting from $59.00
How can I change background color module positions (position 45, 46,47, 40,41,42 ) and background color header row 6.
thanks
The background color you can change in the styles.php file, please look for the following classes (it should be on lines 649-677)
#colleft .row1,
#colright .row1
{
background-color: #F4F4F4;
}
#colleft .row2,
#colright .row2
{
background-color: #F4F4F4;
}
#colleft .row3,
#colright .row3
{
background-color: #F4F4F4;
}
#colleft .row4,
#colright .row4
{
background-color: #F4F4F4;
}
#colleft .row5,
#colright .row5
{
background-color: #F4F4F4;
}
For the header.row6 please look for the following class in the same file (line 418):
#header .row6 .content
{
font-size: <?php echo $header_row6_fontsize; ?>;
color: #<?php echo $header_row6_fontcolor; ?>;
border: 1px solid #<?php echo $body_bgcolor; ?>;
background-image: url(<?php echo $header_row6_bgimg; ?>);
background-repeat: repeat;
}
Regards, AS Team.
BR