Page title margin top issue
-
two issues:
1) i have disabled “page title” from woodmart theme settings but doing so leads to the shop listing page head to go beneath the menubar..which leads to all the things like page breadcrumb, grid/list switch, choosing size of paginations, sorting etc to hide.. please see screenshot..i need a solution which solves the problem only for this page specifically..
2) also wanted to understand if i want to give padding from both right and left side in all the pages of my website how can i easily do that, while keeping the “Site width”: “Content full width”
-
This topic was modified 1 month ago by
ubiquitant.
Attachments:
You must be
logged in to view attached files.
Hello,
01. Please try to add the following Custom CSS code in Theme Settings > Custom CSS:
body.woodmart-archive-shop .wd-content-layout,
body.post-type-archive-product .wd-content-layout,
body.archive.post-type-archive-product .wd-content-layout {
padding-top: 150px !important; /* change 100px to match your header height */
}
02. If you want to add padding on both the left and right sides across all pages while keeping the Site width set to “Content full width”, please add the following CSS under Theme Settings > Custom CSS > Global Custom CSS. You can adjust the padding values as needed.
body .site-content {
padding-left: 40px;
padding-right: 40px;
}
Best Regards,