We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

NO REPEAT BACKGROUND FOR ENTIRE SITE | Forum

Topic location: Forum home » Support » General Questions
Erlan
Erlan Feb 14 '15
My background is repeating in the Y's , I guess its repeating downwards, im trying to make it no repeat, im using the origins theme, not sure why its not working, I have tried editing the code in the HTML edit under the Read only box, and it dosnt seem to work, and sometimes when I make a change all it does is it dosnt display the wallpaper at all. any help .??? my site is www.ihashyou.com so you guys can see whats happening, thanks appreciate all the support.
Erlan
Erlan Feb 14 '15

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.

Wilson
Wilson Feb 14 '15

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