Otaku Ichise
New Member
- Messages
- 64
- Reaction score
- 0
- Points
- 0
How can i take that blank space without giving absolute position to ul,s?
http://otakushrine.elementfx.com/contact.htmlhttp://otakushrine.elementfx.com/contact.html
html
<ul id="contact">
<li class="flag_li">Contact</li>
css
#contact {
padding: 0px;
width: 400px;
margin-top: 20px;
margin-left: 40px;
}
.flag_li {
list-style-image: url(../images/portugal_flag.gif);
font-size: 18px;
font-family: Georgia;
color: #FF6600;
list-style-position: inside;
}
sample
edit: fixed it by giving pading and leave top margin 0 (sigh why didnt i think of this sooner)
http://otakushrine.elementfx.com/contact.htmlhttp://otakushrine.elementfx.com/contact.html
html
<ul id="contact">
<li class="flag_li">Contact</li>
css
#contact {
padding: 0px;
width: 400px;
margin-top: 20px;
margin-left: 40px;
}
.flag_li {
list-style-image: url(../images/portugal_flag.gif);
font-size: 18px;
font-family: Georgia;
color: #FF6600;
list-style-position: inside;
}
sample

edit: fixed it by giving pading and leave top margin 0 (sigh why didnt i think of this sooner)
Last edited: