This is an old revision of the document!
Site panel is a narrow gray line at the top of your site. This example describes how to add your custom image to the site panel, change it's height,background color and some other small tweaks.
Default styles:
.ow_site_panel { background: none repeat scroll 0 0 #F4F4F4; border-bottom: 1px solid #E5E5E5; height: 41px; }
Adding custom styles:
.ow_site_panel { background: url('http:link_to_your_upload_image_here.png') no-repeat scroll 0 0 #340404; border-bottom: 20px solid #E7AA37; height: 300px; }
Result:
Where:
background: url('http:link_to_your_upload_image_here.png')()- shows your uploaded image.
no-repeat- tells that your background image should not be repeated.
#340404 () -sets the color for the rest of the site panel which is not occupied by your image.
border-bottom: 20px solid #E7AA37; () sets the height, type and color of the bottom border.
height - sets the height for your site panel
.ow_page_wrap { background-image: none; }
Result (default vs customized):
Add following CSS in Admin panel > Appearance > Edit Theme > “CSS” tab:
.ow_bg_color { background-color: **#A9F5F2**; }Where #A9F5F2 is desired color code. Result: