Home › Forums › WoodMart support forum › Bug in the site’s CSS styles.
Bug in the site’s CSS styles.
- This topic has 3 replies, 2 voices, and was last updated 1 month, 2 weeks ago by Bogdan Donovan.
-
AuthorPosts
-
November 29, 2024 at 5:42 pm #617773
caioParticipantSome products on the site are in text only:
https://krcsports.com.br/produto/espingarda-cbc-military-3-0-rt-calibre-12-14-full-tungsten/
https://krcsports.com.br/produto/espingarda-cbc-military-3-0-rt-calibre-12-24-cerakote-tungsten/
https://krcsports.com.br/produto/espingarda-cbc-military-3-0-rt-calibre-12-19-cerakote-tungsten/Some CSS rules are not being applied
And the product pages do not have part of the background blank, as they should be.
Can anyone help me fix this problem? It seems to be something related to the site’s CSS.
November 29, 2024 at 5:52 pm #617781
Bogdan DonovanKeymasterHi,
While editing the product description, the “Blank Layout” option was selected in the WPBakery page settings. To fix this issue, navigate to the settings of the specific product description, click the gear icon, and select “Default Layout” in the window that appears. (Screenshot https://monosnap.com/file/RO4jY1qHZT2C0eIKummVSGH0wzwNkg).
Kind Regards
November 29, 2024 at 11:40 pm #617888
caioParticipantHello, thank you. It worked!
Another problem I’m facing is related to my CSS edits. They are no longer reflected on the product and blog pages. Can you tell me why?
Another thing, the part where the product description is located had a white background, now it has a texture. I like it better with the white background, but for some reason it ended up like this.
Attachments:
You must be logged in to view attached files.December 2, 2024 at 11:02 am #618292
Bogdan DonovanKeymasterHi,
In the previous update, we stopped using the Bootstrap grid and switched to a custom grid based on Flexbox Grid. Accordingly, classes like .col-lg-6 are no longer used in our theme, and all custom code relying on it has stopped working. Most of your customizations can be fixed simply by removing the .col-lg-6 class from selectors. For example, replace
.col-lg-6.summary.entry-summary .woocommerce-Price-amount.amount
with.summary.entry-summary .woocommerce-Price-amount.amount
.Regarding column widths on single product pages, the previous customizations cannot be adapted in the same way because Flexbox Grid requires different styles for similar implementations. To achieve a similar 60/40 aspect ratio column layout, try to add the following custom code to the Global Custom CSS area located in the Custom CSS section of the Theme settings:
@media (min-width: 1025px) { body .product-image-summary-inner.wd-grid-g { grid-template-columns: 60% 1fr; } body .product-image-summary-inner > .product-images, body .product-image-summary-inner > .entry-summary { grid-column: unset; min-width: 1px; } }
Kind Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register