PDA

View Full Version : Selectively hide Keywords


LPC
May-07-2008, 11:53 AM
I like the idea of Keywords and the ability to browse them but I don't like an image to have a list of words underneath it. It's distracting and adds clutter to the page. Is there anyway to hide that list under every picture but still keep the functionality - hide it from viewers only the way you can hide the breadcrumb to all but yourself for example.

SPK64
May-07-2008, 03:16 PM
I like the idea of Keywords and the ability to browse them but I don't like an image to have a list of words underneath it. It's distracting and adds clutter to the page. Is there anyway to hide that list under every picture but still keep the functionality - hide it from viewers only the way you can hide the breadcrumb to all but yourself for example.

Add this to your CSS. Hidden to others but visible when logged in.

#photoKeywords {
display: none !important;
}
.loggedIn #photoKeywords {
display: block !important;
}

LPC
May-07-2008, 08:57 PM
Add this to your CSS. Hidden to others but visible when logged in.

#photoKeywords {
display: none !important;
}
.loggedIn #photoKeywords {
display: block !important;
}

Perfect - thank you :smile6

LPC
May-07-2008, 11:30 PM
Is it possible to change the font and/or font weight for the Keywords?? I'd probably prefer to change from bold to normal.

SPK64
May-08-2008, 04:53 PM
Is it possible to change the font and/or font weight for the Keywords?? I'd probably prefer to change from bold to normal.

Just add any CSS font customizing options As below for bold.


.loggedIn #photoKeywords {
font-weight: bold;
display: block !important;
}

LPC
May-09-2008, 01:30 AM
Just add any CSS font customizing options As below for bold.


.loggedIn #photoKeywords {
font-weight: bold;
display: block !important;
}

Thank you very much :D