PDA

View Full Version : Keywords are back


NaturalEye
Feb-16-2006, 02:03 AM
Afetr the new changes my keywords have started appearing again. I have this in my CSS which worked previously:

#photoKeywords, #keywords {display:none}

Can one of the wizards let me know the new syntax

Thanks

Gary

devbobo
Feb-16-2006, 02:54 AM
Gary,

Try...


#photoKeywords, #keywords {display:none !important;}

Cheers,

David

NaturalEye
Feb-16-2006, 03:40 AM
Thanks David - I tried just adding the semicolon:

#photoKeywords, #keywords {display:none;}

but still no joy

Gary

www.naturaleye.co.uk (http://www.naturaleye.co.uk)

bigwebguy
Feb-16-2006, 03:41 AM
Thanks David - I tried just adding the semicolon:

#photoKeywords, #keywords {display:none;}

but still no joy

Gary

www.naturaleye.co.uk (http://www.naturaleye.co.uk)
Gary, try this:

#photoKeywords, #keywords {display:none !important;}

Andy
Feb-16-2006, 03:43 AM
Thanks David - I tried just adding the semicolon:

#photoKeywords, #keywords {display:none;}

but still no joy

Gary

www.naturaleye.co.uk (http://www.naturaleye.co.uk)

:nono

you have to do it EXACTLY LIKE THIS:

#photoKeywords {display: none !important;}

curlybracecolonspacenonespaceexclamationpointimportantsemi-coloncurlybrace

Mkay? :ear

NaturalEye
Feb-16-2006, 03:44 AM
Funny when I do what I was originally told it works great :rofl

Thanks guys - help like this is why I joined Smugmug!

Gary

Andy
Feb-16-2006, 03:56 AM
Funny when I do what I was originally told it works great :rofl

Thanks guys - help like this is why I joined Smugmug!

Gary

:lol3 no worries Gary, it's easy to confuse !important with "hey, it's important you get this semicolon in there..."

:thumb

Andy
Feb-16-2006, 06:57 AM
OK standby on using the !important thing - mkay? You may not need it after all.