• https://www.auxillary-works.nl/screenshot.jpg

    For some reason suddenly there are bullets just outside the table. I made a table within that is a reference to sidebar.php file.

    Sidebar.php code:
    <div id=”sidebar”>
    <table width=”100%” border=”0″ cellpadding=”8″ cellspacing=”0″>
    <tr>
    <td valign=”top” class=”bodyTxt”>
    <?php get_links_list(); ?>
    Content:
    <?php wp_register(); ?>
    <?php wp_loginout(); ?>
    <?php wp_meta(); ?>
    </td>
    </tr>
    </table>
    </div>

    And what I do I can’t get my link category name LINKAGE turned into white (h2). The problem is that i change h2 in the style template file the other h2’s turn white too as the main pages have a white background. Brrrrrrrrrr!

    TIA,

    Eric

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    I don’t know about those tables. It might be simpler to just specify the h2 for the sidebar in the .css file.

    #sidebar h2 {
    color:#ffffff;
    }

    That way only the sidebar titles will be affected.

    The bullet-points look like they are from
    #sidebar li
    #sidebar ul
    or some such thing. Try specifying:

    #sidebar li {
    list-style-type: none;
    list-style-image: none;
    }

    By looking in the .css file you will probably find out which one hasn’t been specified as ‘none’.

    Hope this wasn’t hopelessly incomprehensible :/ This is the first time I’m posting.

    Thread Starter auxillary

    (@auxillary)

    No, no, much you wrote makes sense! I am of to my CSS file and jump into that css code and work on it! Thanks.

    Eric

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS bullet and colors’ is closed to new replies.