- This topic has 2 replies, 2 voices, and was last updated 10 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 › WP Photo Seller – CSS formating issues
Hello there, I have setup the plugin and everything seems to be working very well apart from some formatting issues, I think it might be linked to the theme, but I am struggling to get the correct CSS to rectify this…
On this page for example I have lost the border around the options, and when you add an option to the cart and goto view cart, the payment drop down selection box messes up after the page fully loads almost like there is a conflict.
[http://www.sussexscenes.co.uk/photogallery/photo_details/?gallery_id=3&image_id=1866]
Just wondered if someone could possibly advise some overriding CSS to help overcome this
Thank you very much
Kind Regards
Sam
Regarding your photo details page css fixes, please do 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 settings of the above plugin:
.wps_tr_odd > td{
background: #ffffff !important;
}
.wps_tr_even > td{
background: #F3F3F3 !important;
}
input, textarea {
border: 1px solid #CCCCCC !important;
border-radius: 3px !important;
font-family: inherit !important;
padding: 0.428571rem !important;
}
when you add an option to the cart and goto view cart, the payment drop down selection box messes up after the page fully loads almost like there is a conflict
The following javascript file is messing with the dropdown box:
/wp-content/themes/central/js/plugins.js
When you look inside the script file it has the following description:
Stylish Select 0.4.9 - jQuery plugin to replace a select drop down box with a stylable unordered list
You will need to ask the author of that plugin/theme to fix this or you will need to somehow disable that script.
Fantastic, thank you so much for your help