Home Forums WoodMart support forum Remove Table formatting

Remove Table formatting

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #145068

    silentmedia
    Participant

    Hi,

    I see that all HTML tables by default have formatting (lines under each row).

    Can I remove these for just one Table? Without affecting other tables that use your formatting?

    #145142

    Hello,

    You can assign some custom class to that specific table and then via css code you can hide that line under each row of table by hitting that specific class.

    As you are using the html tables. You can also hide the bottom borders of your table rows by assigning the below css to th and td. In this way other tables will not affected. Switch to the text mode and you will be able to edit your table:

    https://www.w3schools.com/html/html_tables.asp

    td, th {
    border-bottom: none;
    }

    Best Regards.

    #145174

    silentmedia
    Participant

    Thanks for the detailed answer Aizaz!

    #145179

    Most Welcome!..

    Feel Free to write back if you need further assistance, I’ll be more than happy to help you out.

    Have a Fantastic Day 🙂

    Topic Closed.
    Best Regards.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Remove Table formatting’ is closed to new replies.