+ Reply to Thread
Results 1 to 3 of 3

Thread: Wordpress Comments Not Showing Properly In Firefox

  1. #1
    Join Date
    Nov 2007
    Posts
    4

    Default Wordpress Comments Not Showing Properly In Firefox

    Hi, I was hoping somebody could please help me with this problem. I created a Wordpress blog using the "dark touch" template. Everything is working fine except when somebody tries to view user comments in Firefox. The first comment is squished to the far right of the screen.

    You can see an example here:
    http://ut3hound.com/2007/11/17/top-5...r-get-updated/
    (scroll to the bottom)

    Oddly, comments after the first one look fine. Also, the problem doesn't show up in IE.

    Any suggestions? Thanks.
    Last edited by ut3hound; 11-18-2007 at 01:26 PM. Reason: added information

  2. #2
    Join Date
    Feb 2006
    Location
    Florida, USA
    Posts
    153

    Default

    Try adding:
    Code:
    #commentlist {
      clear: both;
    }
    to your stylesheet.

    The header for "Comments" is being floated to the left, which is causing the issue. I used Firebug to manually add style="clear: both" to the commentlist and it displayed fine.
    BlueHost Knowledge Base, it is quite helpful, you should read through it.

  3. #3
    Join Date
    Nov 2007
    Posts
    4

    Default

    Thanks Lazy, worked like a charm. For posterity, here's where I added it in on my stylesheet:

    /* Comments */
    #commentlist {
    clear: both;
    }

    .commentlist li, #commentform input, #commentform textarea {
    font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
    }
    .commentlist li {
    font-weight: bold;
    }

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts