partisanentity
Member
Posted 2 years ago #
Hello,
I modified the Tiny Mod theme and currently have a cosmetic issue.
If you click on the banner on my blog, you will see a grey line appear on the right side of the banner which disappears once the page has been loaded.
This line only appeared after I played around with the width of the #wrap tag.
I would appreciate any help as I am a bit of a newb when it comes to CSS styling. How do I get rid of/hide the line from appearing on the right side? (it isn't appearing on any other side of the banner).
Thanks.
partisanentity
Member
Posted 2 years ago #
Just a bump, would really appreciate some help.
davedotcom
Member
Posted 2 years ago #
Hey partisanentity,
That's a Firefox issue. Firefox puts gray dotted borders around links when they are active. Check out this fix:
http://sonspring.com/journal/removing-dotted-links
Try the following in your CSS.
You currently have:
* {
margin: 0;
padding: 0;
}
Change it to
* {
margin: 0;
padding: 0;
border:0;
outline:0;
}
partisanentity
Member
Posted 2 years ago #
Thanks to both of you for the help.
I tried the method davedotcom linked to and it worked.