Tagged: background color, Code block, mobile view
Hi,
I have some css in a code block (see below) that changes the background color for a page. It looks great, however in the mobile view, the borders on each side are a different color.
<style type = “text/css”>
#main .main_color .container { background: #c3d2d5!important; }
</style>
Can you suggest a way to make the whole page in mobile view the same color?
Many thanks!
-Pelyon
Hi Jason!
Send us a link to your page and we’ll take a look.
Regards,
Elliott
Hi Elliot,
Thanks for the reply. A link to one of the effected pages is below.
http://billrusselldesign.com/sr_volunteers/home/volunteer-opportunities/san-rafael-clean/
Thanks for your assistance,
Best regards,
Pelyon
Hi!
Try changing your CSS to this.
#main .main_color .container, .main_color {
background: none repeat scroll 0 0 #c3d2d5 !important;
}
Best regards,
Elliott
Thanks Elliott, that did the trick.
-Pelyon