Support » Fixing WordPress » Changing Format In A New Page

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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..

    Thread Starter 5thape

    (@5thape)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Format In A New Page’ is closed to new replies.