In both Mozilla Navigator and Mozilla Firefox I get a horizontal line that spans the entire header. When I move the mouse over the header, it dissapears for parts of the header. This problem is not visible in Opera or Konqueror. Any hints?
(I could actually experience it with the default 0.12 installation, a blue line across the logo.)
Mozilla/Mozilla Firefox: Horizontal line over the logo in header
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
Just a small part of the header to show the problem and how it looks.
(png attached)
[attachment deleted by admin]
(png attached)
[attachment deleted by admin]
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
you have to set the text decoration to none for links in the header.
That will solve that problem.
That will solve that problem.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
What's the code I have to insert?
In which page? Inside the template or in the layout?
Can you give me an example of the code I had to search?
In which page? Inside the template or in the layout?
Can you give me an example of the code I had to search?
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
haven't i seen this question before,, seems like a common prob.
wonder if it could be put somewhere easy to find?
wonder if it could be put somewhere easy to find?
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
I wonder if the default styles lack something likemaksbud wrote: haven't i seen this question before,, seems like a common prob.
wonder if it could be put somewhere easy to find?
although I think that header text is wrapped in accessibility tags which would be invisible if accessibility css is included in the theme...#header a {
text-decoration:none;
}
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
Yes, it's some days ago now, but I think what I did was to add:
text-decoration: none;
to the
div#header h1 a { (...) }
entry in the "layout" stylesheet
--
flips
text-decoration: none;
to the
div#header h1 a { (...) }
entry in the "layout" stylesheet
--
flips
Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header
Thanks.
I insert the code and now is fixed:
div#header h1 a {
text-decoration:none;
background: url(uploads/images/********.jpg) no-repeat 0 0px;
display: block;
height: 120px;
text-indent: -700em;
width: 769px;
margin: 0;
padding: 0;
}
I insert the code and now is fixed:
div#header h1 a {
text-decoration:none;
background: url(uploads/images/********.jpg) no-repeat 0 0px;
display: block;
height: 120px;
text-indent: -700em;
width: 769px;
margin: 0;
padding: 0;
}