Hi, how can I add the missing line in the review box in a product page?
Thanks.
Hey DROR,
There is a negative margin there that kind of hides the border.
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
div.product .woocommerce-tabs ul.tabs li {
margin-right: 0;
}
If you need further assistance please let us know.
Best regards,
Victoria
Doesn’t work.
Hi,
Try adding this css code:
.rtl div.product .woocommerce-tabs ul.tabs li {
margin-right: 0 !important;
margin-left: -1px !important;
}
Best regards,
Nikko
Hi Nikko, that also doesn’t seem to work.
Sorry, it works now when I put the code higher inside the Custom CSS box.
Hey,
If it does work when you move the code higher inside the field, you probably have some error in your custom CSS code near bottom. You can check for the errors in your custom CSS code here – http://csslint.net/
Cheers!
Yigit
Good to know. CSS lint found 1 errors and 279 warnings.
Parsing Errors
Expected RBRACE at line 677, col 1.
@media only screen and (max-width:767px) {
this is the code it found the error in:
@media only screen and (max-width:767px) {
#top .av-masonry-entry.av-masonry-entry {
left: 0 !important;
}
}
What’s wrong with it?
Hey!
Could you please post your custom CSS here using – https://pastebin.com/ so we can check it? Code you pasted above is correct.
Regards,
Yigit
Sure, here it is – https://pastebin.com/zU6Zz5n5
Hey!
There was a missing closing curly bracket before that line. Please replace your custom CSS code with this one – https://pastebin.com/2F5HHFi6
Best regards,
Yigit