Page 1 of 1

Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Thu Mar 16, 2006 3:52 pm
by flips
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.)

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Thu Mar 16, 2006 3:55 pm
by flips
Just a small part of the header to show the problem and how it looks.
(png attached)

[attachment deleted by admin]

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Thu Mar 16, 2006 4:23 pm
by calguy1000
you have to set the text decoration to none for links in the header.

That will solve that problem.

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Thu Mar 16, 2006 5:43 pm
by flips
Yes, it did. Thanks! :)

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Fri Mar 31, 2006 4:39 am
by alarach
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?

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Fri Mar 31, 2006 6:00 am
by Dr.CSS
haven't i seen this question before,, seems like a common prob.
wonder if it could be put somewhere easy to find?

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Fri Mar 31, 2006 9:01 am
by tsw
maksbud wrote: haven't i seen this question before,, seems like a common prob.
wonder if it could be put somewhere easy to find?
I wonder if the default styles lack something like
#header a {
text-decoration:none;
}
although I think that header text is wrapped in accessibility tags which would be invisible if accessibility css is included in the theme...

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Fri Mar 31, 2006 1:36 pm
by flips
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

Re: Mozilla/Mozilla Firefox: Horizontal line over the logo in header

Posted: Sat Apr 01, 2006 2:52 am
by alarach
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;
        }