I want to change a couple things in my links page (http://www.5thape.com/wordpress/links) mainly get rid of the bullets, change the size and style of fonts. How would I go about changing these things without affecting the CSS on my main page? Thanks.
In the template for that page, you have the storycontent div:
<div class="storycontent">
and that closes further down.
I would put another div inside that, then style the css.
For instance:
<div class="storycontent">
<div id="linkspage">
<ul>
<li>here is a link</li>
<li>and another</li>
</ul>
</div>
</div>
and in the css....
#linkspage ul {
list-style:none;
}
that sort of thing..
I've tried to do what you said but it still won't work. I forgot to add that I'm using the wp-exec plugin and this:
<exec type="function" name="get_links_list" />
To get the links for that page. I'm not entering the links manually in the code.