- This topic has 2 replies, 2 voices, and was last updated 9 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photo Seller – CSS for gallery thumbnails in albums
Tagged: gallery thumbnail, photo seller
Hello, Can you please suggest how I go about changing the look (css) of the gallery thumbnails when you choose an album. [http://www.jacquimartin.com.au/home/album1/]
I would like the title to appear below the picture and the background in black with font in white.
Hi,
For some reason your system is choosing the default thumbnail size as 300×350 when it should really be 150×150.
Nevertheless you can try the following custom tweak:
1) Go and grab the following plugin:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
2) Then add the following CSS code in the settings of the above plugin:
#albumcontainer .album_item_bottom .album_item_name{
padding-top: 20px;
}
#albumcontainer .album_item_bottom{
background: black !important;
}
#albumcontainer .album_item_bottom .album_item_name a{
color: white !important;
}
Perfect!
Thanks Peter