Jana (
jana) wrote in
style_system2011-08-15 03:31 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Entry tags:
Contextual popup image
All links in my journal are styled with 'border-bottom: 1px solid #someColor;' which also affects the contextual popup image. I don't want a border in this particular case, but I cannot seem to get rid of it.
I've tried .ContextualPopup{border: none !important;} and .ContextualPopup a{border: none !important;}, but it doesn't have any effect. Nor does .ljuser a img{border: none !important;}
What am I overlooking?
EDIT: Picture of what I mean (the red dots showing which image(s) I'm talking about)

EDIT 2: Like someone pointed out to me, it's not the contextual popup but the user name icon (or user link).
I've tried .ContextualPopup{border: none !important;} and .ContextualPopup a{border: none !important;}, but it doesn't have any effect. Nor does .ljuser a img{border: none !important;}
What am I overlooking?
EDIT: Picture of what I mean (the red dots showing which image(s) I'm talking about)

EDIT 2: Like someone pointed out to me, it's not the contextual popup but the user name icon (or user link).
no subject
As far as the user links in your actual entry, perhaps something could be done about that in general. I don't have your style up, and my firefox is being wonky to look at it, but maybe something similar to the following might do the trick and override your link style:
You can always try border-bottom: 0px too if none doesn't work. Or just a general img a tag with a border: none. That would take the border off all images unless otherwise specified.
no subject
So, thanks for pointing me in the right direction :)
My solution:
a, b {color: #1b649a; text-decoration: none; border-bottom: 1px solid #ddd;}
a:hover, b:hover {color: #073a60; border-bottom: 1px solid #073a60; }
a:visited, b:visited {color: #073a60; text-decoration: none; border-bottom: 1px dotted #073a60; }
a:visited:hover, b:visited:hover {color: #073a60; border-bottom: 1px solid #073a60;}
.ljuser a{border: none !important}
no subject
image link
With each section being its own link, and the style being applied to .ljuser being applied to each part.