- Posts: 2
- Thank you received: 0
Same colour formatting on all pages
-
heffer
Inactive member - Topic Author
- New Member
Less
More
11 years 6 months ago #30149
by heffer
Same colour formatting on all pages was created by heffer
Hi,
Can you please tell me how I can change my site, which is using the business template, so that the blue shading on the front page, is also on all the other pages of my site.
My web addres is www.kendalwebdesign.co.uk
Many thanks for your help.
Can you please tell me how I can change my site, which is using the business template, so that the blue shading on the front page, is also on all the other pages of my site.
My web addres is www.kendalwebdesign.co.uk
Many thanks for your help.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 6 months ago #30157
by ivan.milic
Replied by ivan.milic on topic Same colour formatting on all pages
Blue shading appears for particular container on home page
<div class="upper_wrap">
...
</div>
You have module position "upper" in it.
css is generated form css/template_css.php:
You don't have that area on other pages.
Maybe changing
.upper_wrap { to .upper_wrap, .main_area_wrap {
will fit you
<div class="upper_wrap">
...
</div>
You have module position "upper" in it.
css is generated form css/template_css.php:
Code:
.upper_wrap {
background: <?php echo $advertTop; ?>; /* Old browsers */
background: -moz-linear-gradient(top, <?php echo $advertTop; ?> 40%, #FFFFFF 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(40%,<?php echo $advertTop; ?>), color-stop(100%,#FFFFFF)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, <?php echo $advertTop; ?> 40%,#FFFFFF 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, <?php echo $advertTop; ?> 40%,#FFFFFF 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, <?php echo $advertTop; ?> 40%,#FFFFFF 100%); /* IE10+ */
background: linear-gradient(top, <?php echo $advertTop; ?> 40%,#FFFFFF 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='<?php echo $advertTop; ?>', endColorstr='#FFFFFF',GradientType=0 ); /* IE6-8 */
}
You don't have that area on other pages.
Maybe changing
.upper_wrap { to .upper_wrap, .main_area_wrap {
will fit you
Please Log in to join the conversation.
Time to create page: 0.184 seconds