The logo on the website i'm making is pushed to the right a little bit too much on Firefox all the other browsers are good.
Can you provide a link or some code to look at?
@djrolstad When you ask questions regarding an issue, please provide a link or a live example.
oh sorry i thought i did: http://meetlawngirl.com/testing/who_we_are.html
First off, you should put the logo in the html as an image and link that. You should not be wrapping a div with anchor tags.
It's because you're using this: -moz-transform: scale(0.8);
-moz-transform: scale(0.8);
Why are you doing that instead of just resizing the logo in an image editor?
And @jkinney768 is also correct. The better format would be this:
HTML:
<h1 id="logo"><a href="/">Lawn Girl</a></h1>
CSS:
#logo a { text-indent: -9999px; display: block; width: xxx; height: xxx; background: url(xxx) no-repeat; }
The logo on the website i'm making is pushed to the right a little bit too much on Firefox all the other browsers are good.
Can you provide a link or some code to look at?
@djrolstad When you ask questions regarding an issue, please provide a link or a live example.
oh sorry i thought i did: http://meetlawngirl.com/testing/who_we_are.html
First off, you should put the logo in the html as an image and link that. You should not be wrapping a div with anchor tags.
It's because you're using this:
-moz-transform: scale(0.8);Why are you doing that instead of just resizing the logo in an image editor?
And @jkinney768 is also correct. The better format would be this:
HTML:
CSS: