Alex087
September 5, 2023, 5:51pm
1
hi,
I’m using Dawn theme & I would like to customize a table on my product description section:
Thanks for your help
Alex
suyash1
September 5, 2023, 6:00pm
2
@Alex087 - can you please share this page link? it will need css
Hi @Alex087
Try this one,
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
table:not([class]) td, table:not([class]) th {
border: none !important;
}
.product__description.rte.quick-add-hidden td {
padding: 5px;
}
And Save.
You can adjust the size.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Alex087
September 5, 2023, 6:09pm
4
Wahhoo wonderful Made4, is it also possible to remove the frame of the table?
Thanx
Hi @Alex087 ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
Go to Online Store → Theme → Edit code
Open your theme.liquid file
Paste below code before :
Best regards,
Anthony
Alex087
September 5, 2023, 6:15pm
6
Thanx Anthony this is working but the table appears during the loading of the page…
Yeah Try this one. Just add it to the file.
table:not([class]) {
box-shadow: none !important;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Alex087
September 5, 2023, 6:26pm
8
Thanx Made$ this is working for the table appears shortly while the page is loading, is possible to delete this table instead of hiding it?
Thanx
Im not sure if this will work. But can try.
table:not([class]) td, table:not([class]) th {
border-collapse: collapse !important;
}
table:not([class]) {
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!