|
Posted by Jonathan N. Little on 11/26/07 16:56
Tomasz Chmielewski wrote:
> Jonathan N. Little schrieb:
>> Tomasz Chmielewski wrote:
>>> Tomasz Chmielewski schrieb:
>>>
>>> (...)
>>>
>>>>> To OP though, my background image method will work in IE, the
>>>>> generated content methods will not.
>>>
>>>> How should my CSS look like? I'm trying to achieve it for some time
>>>> now, with no success.
>>
>> Well firstly you was want to use CLASS not ID. With ID you can only
>> have 2 links per page "normal" and "arrows" because all IDs must be
>> unique. So use CLASS.
>>
>>>
>>> So, this is almost the one I was looking for:
>>>
>>> #arrows a {
>>
>> This is incorrect anyway, this means an A element *within* another
>> element with an ID of "arrows".
>
> So, below an A element is within a DIV element with an ID of arrows,
> isn't it?
>
> <div id="normal">
> <a href="normal.html">Normal link</a>
> </div>
> <div id="arrows">
> <a href="subpage.html">Link with an arrow image</a>
> </div>
>
No you are correct I missed the DIV... #arrows a {} is correct for your
application.
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|