• 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.

html question

If you want to act like a link, then make it a link. All your css can be applied to an anchor tag class, you just need to add a display:block; to it. The reason your vertical align is not working properly is because that property only works on inline elements. So it doesn't work on a div, it does work with a span. I've attached some html that should behave exactly as you desire.
 
Thanks a bunch! 🙂

I was trying to work with the a tag earlier, wasn't getting the proper height & width to the area that the mouse cursor would change in, nor keep the vertical alignment to the text.

I'll give these suggestions a try later when I've got the time. I think I can get it to work now.



EDIT - hadn't occurred to me to use padding to get the height & vertical alignment I wanted inside an a tag. :thumbsup: Works like a charm.
 
Back
Top