Closed (fixed)
Project:
Lost & found issues
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
16 Dec 2007 at 05:50 UTC
Updated:
21 Nov 2017 at 16:33 UTC
Jump to comment: Most recent
Ok, All i am trying to do is take a gif image i have in the theme directory and tile it to take over the entire background (including the sidebars, header, etc. I can't seem to figure out how to do this. I've attached the CSS file with what i've got so far. the file is in the theme directory and called bg.gif. Currently it only shows up along the top of the theme and not over the entire page.
Comments
Comment #1
cmscritic commentedThis is what I have changed so far.
/* main fonts and colors for the entire page */
body { background-image:url('bg.gif'); background-repeat: repeat-x; font-family: Arial, Helvetica, sans-serif; margin: 10px; font-size: 13px; }
You can see the results on my website at http://www.shockedoctopus.com
Comment #2
powrslave commentedtry this maybe
body {
font-family: Arial, Helvetica, sans-serif; margin: 10px; font-size: 13px;
background: url(bg.gif) background-repeat: repeat-x; ; }
Comment #3
add1sun commentedRepeat x will only repeat it over the x axis. leave repeat off to endlessly repeat everywhere (x and y axis).
Comment #4
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #5
markhalliwell