Re: Table style customization

Solved

How can I adjust table style and width in Dawn theme?

medcanuni
Excursionist
25 1 2

Theme: Dawn

URL: https://medcanuniversity.com/pages/testresults

 

I need to make some adjustment to this table, and the tables i will be inserting in the future onto the same page. 

 

I want the rows to be less separated, i.e. with less height, and the table to be wider, basically spanning across the whole page while still displaying correctly on mobile. I would also like the lines of the table to be a bit thicker. 

 

I appreciate the help.

Accepted Solution (1)
BSS-Commerce
Shopify Partner
3477 464 554

This is an accepted solution.

Hi @medcanuni ,

 

To fulfill your request, please add the following code snippet to your base.css or theme.css:

 

.rte table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 2px solid #000 !important; /* Thick border */
}

.rte table th, td {
  padding: 10px !important;
}

@media (max-width: 600px) {
  /* CSS for mobile devices */
.rte table  {
    border-width: 1px !important; /* Thinner border */
  }
  
.rte table th, td  {
    padding: 5px !important;
  }
}

 Good luck!

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

View solution in original post

Replies 6 (6)

dmwwebartisan
Shopify Partner
12366 2558 3743

@medcanuni 

This URL https://medcanuniversity.com/pages/testresults page was not found site show 404

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
PageFly App to customize your pages | The most powerful Shopify page builder app
medcanuni
Excursionist
25 1 2

Sorry it was recently changed. Here is the updated one: https://medcanuniversity.com/pages/analytics-database

BSS-Commerce
Shopify Partner
3477 464 554

Hi @medcanuni,

We were unable to access the page through the URL you provided. Can you be more specific with your requirements with pictures so that we can easily visualize them?

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency
medcanuni
Excursionist
25 1 2

Sorry it was recently changed. Here is the updated one: https://medcanuniversity.com/pages/analytics-database

 

I am having a hard time finding examples, but something more like this I guess. 

table.PNG

BSS-Commerce
Shopify Partner
3477 464 554

This is an accepted solution.

Hi @medcanuni ,

 

To fulfill your request, please add the following code snippet to your base.css or theme.css:

 

.rte table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 2px solid #000 !important; /* Thick border */
}

.rte table th, td {
  padding: 10px !important;
}

@media (max-width: 600px) {
  /* CSS for mobile devices */
.rte table  {
    border-width: 1px !important; /* Thinner border */
  }
  
.rte table th, td  {
    padding: 5px !important;
  }
}

 Good luck!

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency
medcanuni
Excursionist
25 1 2

Thank you, this worked!