Can someone help me get rid of the huge indentation and bullet point from my links page?
http://lucashutmacher.com/kclinks/
i'm not entirely sure where this is held, but it ends up leaving a bunch of 'dead' space on the page.
Thanks a ton!!
Can someone help me get rid of the huge indentation and bullet point from my links page?
http://lucashutmacher.com/kclinks/
i'm not entirely sure where this is held, but it ends up leaving a bunch of 'dead' space on the page.
Thanks a ton!!
Greetings from the OKC area.
Wow, that theme is a mess.
http://lucashutmacher.com/wp-content/themes/grain/style.css
/* Dynamic design */ .narrowcolumn { width: 700px; float: left; padding-left: 20px; }
Seems to be coming from that padding-left: 20px; line.
But who knows, it could be coming from all kinds of places. The class="linkcat" that all those links are in does not even seem to be defined in CSS.
yeah, it's pretty bad. unfortunately that didnt work
i wish i understood formatting a bit better, i'd just set it somewhere and refer to it as necessary....
thanks again!
try entering into your CSS
#linkcats ul {
padding: 0;
}
That will probably take it a bit too far left, so maybe:
#linkcats ul {
padding: 0 0 0 20px;
}This topic has been closed to new replies.