URGENT: A lot of CSS issues after recent update
-
Hi there,
I updated the site to the most recent version and many css issues appeared. This is a RTL website but a lot of elements are LTR now.
This is a live website and people visiting it, please help me sort these problems out as soon as possible.
Regards,
Hi,
Please, send us some examples where we can see the problem. Also, disable all optimization and caching plugins.
Please check out the attached files.
Attachments:
You must be
logged in to view attached files.
And also these ones:
Attachments:
You must be
logged in to view attached files.
And this one.
Attachments:
You must be
logged in to view attached files.
Try to edit your child theme functions.php and replace the function woodmart_child_enqueue_styles
with this one
function woodmart_child_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) );
}
Thanks, that solved the problems except one: Page titles are still visible, do I need to hide them one by one in page settings?
Attachments:
You must be
logged in to view attached files.
Solved. I found what was wrong.
Many thanks for your help.
Hi,
Product tabs don’t toggle on mobile devices. People can’t switch between tabs.
And dropdown arrow for variable product as indicated in the image below is on the wrong side.
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.rtl select {
background-position: 10px 50%, 15px 50%;
}
Regards