Forum Moderators: not2easy
The text-indent is being ignored bx IE on Mac.
Has anyone an alternative solution, or can give me a reason why Mac IE is ignoring this property, it is apparently supported?
Oona
Have you tried using margin-left instead of text-indent?
html:
<div class="mainmenu">
<a href="#" class="mainnavigation" title="" accesskey="1">link1</a>
</div>
(mainmenu class has colour info depending on which CSS is loaded)
.mainnavigation { text-indent:15px; font-size:11px; display:block; width: 210px; height:12px; vertical-align : bottom; line-height:12px; padding-top: 5px; padding-bottom: 5px;}
How about:
.mainnavigation {
display: block;
padding: 5px 0 5px 15px;
width: 195px;
height: 12px;
vertical-align: bottom;
line-height:12px;
font-size:11px;
}
I'm searching for mac hacks at the moment, but as I don't know what the problem is (ordinarily text-indent shouldn't be a problem) I don't quite know what to hide from the mac so I'm just commenting things out and in again etc... what a waste of time!