- This topic has 3 replies, 2 voices, and was last updated 9 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 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 › Buttons not displaying on gallery page
Hi, I am using the KingSize theme and on my galleries I have “template 1” set. The button does not show. It seems like they go behind the images. What can I do to correct this?
Ex. [http://www.patrickpowersphotography.com/photogallery/gallery2/]
Also, on the details page the quantity value is cut off and text in the table is very hard to read. Is there a way to fix this also?
Ex. [http://www.patrickpowersphotography.com/photo_details/2/133/PLP-9110526/view/]
Thanks for your help. I’ve learned a lot from this site.
Regarding the missing button – this is because your theme is setting the opacity to 0.
You can fix this by doing the following:
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:
.wps-button{
opacity: 1 !important;
}
Similarly to fix the other issue add the following CSS code like you did for step 2 above:
.wps_digital_details_table .wps_tr_even {
background: none !important;
}
.wps_digital_details_table .qtyInput{
height: 30px;
}
I really appreciate the crazy fast response. Is there a place I can find all of the different .wps-button type components so I can modify these in the CSS plugin? Just trying to learn and not have to ask to many questions about changing elements.
Thanks again for your help!
The best way to do it is to use Firebug or developer tools when you see the issue happening again and then inspect the element in question and get its CSS classname from there.
Once you have the classname you can apply similar CSS code to that which you applied earlier.