Background

Mark

Administrator
Staff member
that looks fine, try it and see, if it doesn't work keep reading/learning and trying until you figure it out :)
 

Mark

Administrator
Staff member
a screenshot is 100% useless when troubleshooting code. Post your URL along with your edit
 

soccerki

Member
http://top20mmo.com ~~
Code:
nav .column .add_server {
    display: block;
    padding: 0px;
    width: 114px;
    height: 40px;
    margin: 0 auto;
    background: url(skins/parabola/img/background.png) bottom;
    text-indent: -99999px;
 

Mark

Administrator
Staff member
this part of your CSS: nav .column .add_server in HTML would be something like


<nav class="column">
<span class="add_server">


but your HTML code has none of this... so it cant possibly work.
 

Mark

Administrator
Staff member
you want that on your "body"

in user.css add this:
Code:
body {
background: url(skins/parabola/img/background.png) top center;
}
 

Mark

Administrator
Staff member
uh where did you get that CSS file from? it has nothing to do with your website at all... appears stolen.

anyway, I told you exactly what to do, but when you do that you will have 10 other things to sort out.
 

Mark

Administrator
Staff member
WTF nothing, what i told you is correct... by default VisioList user.css is empty, YOUR user.css is full of code from another website...

I cannot help you further.
 

Basti

Administrator
Staff member
No, your background does not work, because the path you entered is relative to the css file.

Code:
body {
background: url(skins/parabola/img/background.jpg) top center;
}
So the css file is in skins/parabola/
Your code looks for skins/parabola/skins/parabola/img/background.jpg , which i highly doubt you have in your skins folder ;)

img/background.jpg would be the correct path

Taking it a step further, i would upload nothing to the core parabola, also not img.
If you have new images i would do child/img/myimage.png to prevent a possible overwrite on skin updates
 
Top