Skip to content
WJunction - Webmaster Forum

Button not properly aligned

Status
Not open for further replies.
Go here and look at the sidebar and you will see that one of the bullet points are way off.:):'(

Scene-releases.com

I have been told to edit css but i dont know how to, if your good with it, let me know and I can send you the css file so you can edit it :)
 

7 comments

Search for this on your theme's style.css

PHP:
.sidebar ul li ul li {
	background: url(images/bullet.png) no-repeat left;
	padding: 2px 0px 2px 15px;
	margin: 2px 0;
}

Replace with
PHP:
.sidebar ul li ul li {
	background: url(images/bullet.png) no-repeat top left;
	padding: 2px 0px 2px 15px;
	margin: 2px 0;
}

hopefully it will move the bullet.gif to top

good luck :D
 
okay, since the file bullet.png isn't fit with the "li" tag, try to make a new png file, name it bullet.png add some width and height so it will fit the "li" tag

another solution :
make a coordinate for the bullet.png file so it will fit the "li" tag on Games Link

as I wrote :
PHP:
.sidebar ul li ul li { 
    background: url(images/bullet.png) no-repeat top left; 
    padding: 2px 0px 2px 15px; 
    margin: 2px 0; 
}

replace with:
PHP:
.sidebar ul li ul li { 
    background: url(images/bullet.png) no-repeat 5px 15px; 
    padding: 2px 0px 2px 15px; 
    margin: 2px 0; 
}

notice the change? I change the "top left" properties to "5px 15px"

5px is the x position of the bullet.png measured from the left margin of the "li" tag
15px is the y position of the bullet.png measured from the top margin of the "li" tag

change the value by yourself until it fits the "li" tag

good luck :)
 
Please check and tell me if its fine now.

The 2nd solution might hav worked

.sidebar ul li ul li {
background: url(images/bullet.png) no-repeat 2px 7px;
padding: 2px 0px 2px 15px;
margin: 2px 0;
}
 
Status
Not open for further replies.

About the author

Z
Active Member · Joined
685
Messages
28
Reactions
28
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom