• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

weird HTML issue.. underscore between two image links...

http://details.at/imglinktest.cfm

There are two small icons, and you can see an underscore between them.

I didn't put that there.

In the body of the page, all I have is this code.

<a href="http://google.com">
<img src="../graphics/edit.gif" alt="edit" title="click this icon to edit your page">
</a>

<a href="http://google.com">
<img src="../graphics/delete.gif" alt="delete" title="click this icon to delete your page">
</a>


Now, If I put a BR tag between them, the underscore disappears, but they are vertically stacked.

I need them side by side. Not sure why this is happening. Happens in all browsers.
 
Change this:
Code:
<a href="http://google.com">
<img src="../graphics/edit.gif" alt="edit" title="click this icon to edit your page">
</a>
to this:
Code:
<a href="http://google.com"><img src="../graphics/edit.gif" alt="edit" title="click this icon to edit your page"></a>

The underline between them is actually just the underline of the first link overshooting thanks to the whitespace char (made by the newline). Removing this whitespace removes the overshoot.
 
Back
Top