Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photo Seller Gallery Thumbnail & Price Table Sizes
Tagged: facebook
- This topic has 7 replies, 2 voices, and was last updated 9 years, 6 months ago by suzbah.
-
AuthorPosts
-
April 25, 2015 at 4:21 pm #12551suzbahMember
Gallery thumbnail size is not big enough which can be seen here: [http://byphotography.co.uk/?page_id=1467] and price table size is way too wide : [http://byphotography.co.uk/?page_id=1468&gallery_id=8&image_id=1764&image_name=Snowy-Mountain]
Should I edit Css for the right sizes or can i sort them out with WP Custom CSS plug-in? Thanks in advance
By the way for the thumbnails i tried to add this code via WP custom CSS plug-in :
#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;
}
but didnt work
April 26, 2015 at 1:15 am #69734PeterMemberRegarding your pricing table, enter the following CSS custom code:
.wps-digital-details .wps-pricing-tables .wps_digital_details_table{
width: 100%;
}
.wps_digital_details_table br{
display: none;
}
.wps_digital_details_table .wps_tr_even {
background: none !important;
}Regarding the album thumbnails – I recommend that you remove that code you put in…it looks hideous.
My question is, what are you trying to achieve?
FYI – We have recently added an option to display album thumbs with size 200px ….go to the “Album” menu and set the “Album Selection Template” setting to template 2.
April 26, 2015 at 8:24 am #69735suzbahMemberHi Peter, Thank you for the code, it works perfectly.
About the thumbnail; I am confused and I thought that I found a similar thread in this forum which was nothing to do with my problem and copied that code from that thread but it didnt work and obviously I deleted it immediately. There is no extra css code for the thumbnails at the moment.i want to fix gallery home page`s thumbnails. [WPS_photo_gallery_home] thumbnails look wrong : [http://byphotography.co.uk/?page_id=1467&preview=true&preview_id=1467&preview_nonce=8a338aafa0]
I am sorry for the confusion.
Thanks in advance
April 26, 2015 at 11:27 am #69736PeterMemberThe following code will fix the gallery home page:
.gallery_item_container p,br{
display: none;
}(your theme was adding p and br elements which was messing up the format)
April 26, 2015 at 12:10 pm #69737suzbahMemberThumbs look great now but the code messed with the footer text. The copyright text in the middle of pages
[http://byphotography.co.uk/?page_id=1467&preview=true&preview_id=1467&preview_nonce=a34280b287]
Another question. Is there a way to change 5 thumbs display to 3 thumbs display per row?
April 30, 2015 at 7:03 am #69738suzbahMemberAfter adding the code my footer changed its place. It shows right in the middle of some pages. Any help would be appreciated. Thanks
April 30, 2015 at 11:55 pm #69739PeterMemberDelete the last piece of code I gave you and enter the following:
#gallerycontainer .gallery_item_container p, #gallerycontainer .gallery_item_container br {
display: none;
}May 2, 2015 at 7:30 am #69740suzbahMemberThanks Peter
-
AuthorPosts
- You must be logged in to reply to this topic.