This is an old revision of the document!
This manual describes basic custom changes applicable to Oxwall themes. Manual refers to 3 basic tools used while customizing themes. Make sure to read about them first.
Admin panel > Appearance > Edit Theme > “Graphics” tab >
This feature allows you to upload custom images from admin panel and use URL/path to them within your custom design.
Images uploaded via this form are stored in /ow_userfiles/themes folder on your server. Therefore make sure that bother folders have 777 permissions. Alternatively you can upload your images directly via FTP or control panel.
Admin panel > Appearance > Edit Theme > “CSS” tab
Existing CSS styles - shows you default styles. Edit CSS - allows you to add your custom styles or edit default ones. To edit/add styles just add them into the box under “Edit CSS” section and click “Save”.
.ow_site_panel { background: none repeat scroll 0 0 #F4F4F4; border-bottom: 1px solid #E5E5E5; height: 41px;}
Default styles for site name within site panel :
.ow_logo_wrap { width: 1000px; margin: 0px auto; padding: 12px 0px 0px 10px;} .ow_logo_wrap a { font-family: 'UbuntuBold', "Trebuchet MS", "Helvetica CY", sans-serif; font-size: 13px; text-transform: uppercase; color: #626060;} .ow_logo_wrap a:hover { text-decoration: none;}
Use “CSS” tabs to edit those stile. Example bellow.
.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;} .ow_logo_wrap { display:none;}
Where:
Result on front end:
.ow_page_wrap { background-image: none; }
.ow_page_wrap { background-image: none; background-color: **#A9F5F2**; }
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:
Add following CSS in Admin panel > Appearance > Edit Theme > “CSS” tab:
.ow_menu_wrap { background: none; background-color:#A9F5F2; }Where #A9F5F2 is desired color code. Result: