I have one small problem with this theme. There is very small border. That I can’t edit or find in the CSS files to remove it.

I think it is the same CSS that is used for comment, new comment, read more links

What I want to do is remove the line only below the image. It shows about 2 - 3px below the image.

Using. ImageField, with ImageCatch

I have attached an image.

CommentFileSizeAuthor
#1 image_line.jpg89.16 KBmineshm
image_line.jpg89.16 KBmineshm

Comments

mineshm’s picture

StatusFileSize
new89.16 KB
mineshm’s picture

Status: Active » Fixed

Fixed it.

replaced a line in dynamic.css.php

from

/* Link underline (light blue) */
a {
  border-bottom: 1px solid <?php print $colors[$color]['linkunderline']; ?>;
}

to

/* Link underline (light blue) */
a {
  border-bottom: 0px solid <?php print $colors[$color]['linkunderline']; ?>;
}

this also removes all bored underline

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

devagaurahari’s picture

Thank you so much, that worked a charm.