• Resolved allanit

    (@allanit)


    When you create a table all the lines at the bottom of each row are grey. To get rid of the grey lines I used the following code

    .entry-content td, .comment-content td {
    border-top: 1px solid #ffffff;
    }

    which works for all the lines except the last one. which is still visible and grey. Is there a way to hide or make the bottom line a different colour?

    http://wordpress.org/extend/plugins/ultimate-tinymce/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Josh

    (@josh401)

    Can you post a url to where you are using a table?

    Usually, the theme you are using will have it’s own table css declarations. It’s pretty much one of the basic tools of wordpress. Most EVERY theme developer will style tables via css.

    So, it’s just a matter of over-riding your theme’s declarations. It can usually be done by adding the !important declaration via css. Just google “!important css” 🙂

    Thread Starter allanit

    (@allanit)

    Hi Josh

    Have a look at http://abcwcs.com.au/

    The thin grey line before the black leave a reply box. I have had a look with tag inspector and it looks to me like it is a part of the table.

    thanks for having a look

    Plugin Author Josh

    (@josh401)

    Yeah, it’s coming from your theme.

    Try adding this to your custom css:

    .hentry {
        border-bottom: none !important;
    }

    Thread Starter allanit

    (@allanit)

    Hi Josh

    Unfortunately did not work.

    Plugin Author Josh

    (@josh401)

    Where did you add the code? I don’t see it in your stylesheet.

    Thread Starter allanit

    (@allanit)

    Hi Josh
    It is the last style in the twenty eleven child stylesheet for the site.

    Plugin Author Josh

    (@josh401)

    I see it, and the line is gone.

    Did you refresh your browser? I don’t see the line anymore.

    Thread Starter allanit

    (@allanit)

    Hi Josh

    No I had not refreshed my browser. But I have now and you are correct it has gone.

    Thank you very much for your help.
    I really appreciate it.

    AllanIt

    Plugin Author Josh

    (@josh401)

    My pleasure. Glad you got it working.

    (Please mark thread as resolved, Thanks)

    Thread Starter allanit

    (@allanit)

    Resolved thanks

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘[Plugin: Ultimate TinyMCE] Grey line at the bottom of a table’ is closed to new replies.