I am using the Light Fantastic theme on Drupal 6.12

On any page I create the content for myself there is always a dotted line below the content. Perhaps a separator. It does not appear on pages that are from modules I downloaded (i.e. advanced forums, image gallery, etc.).

How can I get rid of this? I tried going through the theme's CSS but didn't see anything corresponding to this. Any help would be appreciated.

Note: This might occur on all themes, but I know it is happening on this one.

Thanks in advance for any help.

CommentFileSizeAuthor
#1 Screenshots.pdf236.99 KBBobarino
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Bobarino’s picture

Priority: Minor » Normal
FileSize
236.99 KB

I have attached 2 screen shots, with arrows added to point out what I am referring to.

Bobarino’s picture

Status: Active » Closed (fixed)

OK it was an easy fix.

In case anyone else stumbles upon this, the change needed was in the CSS for the theme. There is an entry

div.comments_links {
padding-bottom: 20px;
border-bottom: #A1A16A 1px dotted;
}

The Border-bottom is what caused it. Delete it (or even just setting it to 0px) resolves this issue

Bobarino