PDA

View Full Version : "about" gallery issue!


alexisnow
May-29-2009, 06:09 AM
Hi, the site is:
http://www.nelmaguimaraes.net and the page is the "about " page.

How can I eliminate the details at the bottom such as:
Size, your preferred size, keywords, prev-next?

Thanks
Al

RogersDA
May-29-2009, 06:48 AM
Hi, the site is:
http://www.nelmaguimaraes.net and the page is the "about " page.

How can I eliminate the details at the bottom such as:
Size, your preferred size, keywords, prev-next?

Thanks
Al

One way to do it is to add the following lines to the CSS section of your customization:

Add this to change all galleries
#photoKeywords {display: none !important;}
.photoNav {display: none !important;}
#sizePicker {display: none !important;}

Add this to change only the About gallery
.gallery_8339166 #photoKeywords {display: none !important;}
.gallery_8339166 .photoNav {display: none !important;}
.gallery_8339166 #sizePicker {display: none !important}

alexisnow
May-29-2009, 11:00 AM
Thanks, that really helped!