• Resolved mrcoach

    (@mrcoach)


    Hello everybody!

    I faced with a problem while using tables in Momentous theme. If I insert some table in the content management system, the borders looks fine. I mean, they exist and visible. But, when I am trying to open it in browser, the borders between coloumns are disappear. Using of tag border=”1″ doesn’t solve the problem, unfortunately.
    May be, the problem is in CSS? Is there any way to fix it?

    Thanks a lot for the help!

    Regards, Anton.

    • This topic was modified 7 years, 9 months ago by mrcoach.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author ThemeZee

    (@themezee)

    Hi there,

    Thanks for using Momentous.

    The theme should display table borders by default.

    But you can also add this short CSS snippet, which should force borders to display:

    .entry tr td {
        border: 1px solid #ddd !important;
    }

    You can insert CSS on Appearance > Customize > Additional CSS.

    Best,
    Thomas

    Thread Starter mrcoach

    (@mrcoach)

    Good morning, Thomas!

    Thanks a lot for an operative response.
    I have found in CSS-file that by default was such kind of code:

    .entry tr td {
    border-top: 1px solid #ddd;
    padding: 0.2em 1em;
    }

    I have perlaced it with this one:

    .entry tr td {
    /*border-top: 1px solid #ddd;*/
    border: 1px solid #ddd;
    padding: 0.2em 1em;
    }

    And after that everything works perfect.
    Thanks a lot!

    Best regards, Anton.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Borders between coloumns in table are not displaying’ is closed to new replies.