if somebody could also give me a hint as to make the background of the buttons on top that say "Message, Notifications, Username" where you log off to make it transparent or non scrollable, id appreciate it.
First try putting this css code in your admin/theme/css "Edit CSS" area.
.ow_site_panel {position: fixed; top: 0; width: 100%; z-index: 40;} /*This fixs the top bar*/
2nd. Go to your "theme" css page....find this area
/*========================================================
[3] Masterpage & Page Layout __layout
========================================================*/
look for this:
.ow_page_wrap {
position: relative;
background-image: url('images/bg.jpg'); /** OW_Control type:image, key:backgroundImage, section: 1. General Settings, label: Page background image **/
background-repeat: repeat;
CHANGE: background-repeat: repeat; to this: background-attachment: fixed;
hope it helps!
Wilson