Hi, I have the issue on mobile for Vertical style about Tabs settings. The tabbed elements show like random words. It's ugly. It's possible via css only for mobile to show the tabbed menu in a dropdown? Thanks.
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
@media only screen and (min-width: 1px) and (max-width: 999px) {
.tabbed[data-style*=vertical] .wpb_tabs_nav li {
display:block !important;
}
}
Hi, I have the issue on mobile for Vertical style about Tabs settings. The tabbed elements show like random words. It's ugly. It's possible via css only for mobile to show the tabbed menu in a dropdown? Thanks.
Attached files: Screenshot 2023-05-12 131435.png
Hey Again,
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team