Tagged: x
-
AuthorPosts
-
June 16, 2016 at 10:31 am #1045346
Hi Themeco,
I think these changes we’ve made have affected the main shop page.
When you roll a mouse over the name of the product here (http://honestyforyourskin.co.uk/index.php/shop/?orderby=popularity) the price has shifted off-line.
Do you see what I mean?
How can I stop this from happening?
Cheryl
June 16, 2016 at 4:05 pm #1045886Hi Cheryl,
Please add this to your Custom CSS in Customizer.
.woocommerce .price { float: none; }
Thanks.
June 17, 2016 at 4:08 am #1046737Hi Friech – I’ve added the code, but there is no change on the page. I’ve left the code in the customizer so you can take a look at it if you need…
Cheryl
June 17, 2016 at 4:28 am #1046764Hello Cheryl,
Please have the css code updated and make use of this code instead:
.woocommerce .price, .woocommerce .quantity, .single_add_to_cart_button { float: none; }
Hope this helps. Kindly let us know.
June 17, 2016 at 10:17 am #1047133Hi Rue – unfortunately that hasn’t changed anything either. I’ve left the new code on the site, so you can take a look.
June 17, 2016 at 1:51 pm #1047394Hi There,
Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:
– Link to your site
– WordPress Admin username / password
– FTP credentialsDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
Thanks
Joao
June 21, 2016 at 3:16 am #1052117This reply has been marked as private.June 21, 2016 at 3:33 am #1052140Hi there,
Find this code:
.woocommerce .price, .woocommerce .quantity, .single_add_to_cart_button { float: left; margin: 0 10px p; }
And update it to :
.woocommerce .price { padding: 0 22px; text-align: left; }
Hope it helps.
June 21, 2016 at 8:35 am #1052514Thankyou – that’s sorted it!
At the moment the price is very large & the product name is small on this float menu. Can I adjust the price to be a smaller font size?
June 21, 2016 at 8:46 am #1052529Hi Christopher – I’ve actually just checked the shop page and although the code sorted out the front display. Its changed the product page layout of the quantity, add to cart & price button which were all nicely spaced on one line. You can see here…
http://honestyforyourskin.co.uk/index.php/product/the-natural-cleanse-100ml/
June 21, 2016 at 11:32 am #1052783Hi There,
Update the code above provided to :
.post-type-archive-product.woocommerce .price {padding: 0 22px; text-align: left;}
And
add the following code:
.woocommerce .price, .woocommerce .quantity { float: left; margin: 0 10px; } .single-product .summary.entry-summary .quantity { margin-bottom: -100px; } .post-type-archive-product.woocommerce .single_add_to_cart_button { float: right; }
Hope that helps,
Joao
June 23, 2016 at 4:26 am #1056003Hi Joao,
That’s reversed the challenge. Now the page buttons look ok, but again the floating price option on the shop front is not aligned correctly (take a look —> http://honestyforyourskin.co.uk/index.php/product/the-natural-cleanse-100ml/). The quantity box has also disappeared (which I’m actually not too fussed about, but just thought I’d mention.
Do you want my logon details so you could go in and take a look yourself?
Cheryl
June 23, 2016 at 7:02 am #1056195Hi Cheryl,
Kindly remove the code that reads
.single-product .summary.entry-summary .quantity { margin-bottom: -100px; }
Then add this in custom css
.archive.woocommerce .entry-product .price { float:none !important; }
Hope that helps.
June 24, 2016 at 9:26 am #1058091Thanks Paul, you are a hero – that works!
There was just one other thing I’d asked before we got caught in the seesaw between the product page and the shop page. Can I change the size of the font that displays the price on the shop front page?
Its much larger than the product name at the moment and I’d like to make it smaller…
Cheryl
June 24, 2016 at 1:37 pm #1058377Hi There,
Please add the following code to Appereance Customizer Custom CSS
.woocommerce li.product .entry-header .price>.amount, .woocommerce li.product .entry-header .price>ins>.amount { font-size: 17px; }
Hope that helps,
Joao
-
AuthorPosts