• Resolved aicsbutt

    (@aicsbutt)


    Hi, I am working on a site http://10-for-10.com/. This is a single page site and almost done but I don’t like the white margins below the each row of inserted table form. I don’t know how to remove these margins. Please help me.
    Thanks in Advance

Viewing 11 replies - 1 through 11 (of 11 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Look at default.css – line 196

    .commentlist li.comment article[id*="comment-"] table td, .post_content table td {
     border-bottom: 1px solid #D0D0D0;
     padding: 5px;
    }

    Thread Starter aicsbutt

    (@aicsbutt)

    Dear Andrew,
    Thank you so much for such quick response but please guide me where to make change. I have bit different code in CSS which is as follow:
    .commentlist li.comment {
    background:#fafafa;
    border:1px solid #cfd3d6;
    border-radius:7px;
    box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 0p
    Please tell me where to make change and what change should I made?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Which file are you looking at?

    Thread Starter aicsbutt

    (@aicsbutt)

    Andrew, I am looking at style.css file, In this theme there are three css files named:
    Visual editor stylesheet.css
    Rtl style sheet.css
    stylesheet.css
    There is no default.css file

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Default CSS looks like it’s coming from a plugin, http://10-for-10.com/wp-content/themes/online-marketer/library/css/default.css .

    Have you a Child Theme or Custom CSS/ Custom Style section in the dashboard?

    Thread Starter aicsbutt

    (@aicsbutt)

    Its not a child theme.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is it a theme you made yourself, or which theme?

    Thread Starter aicsbutt

    (@aicsbutt)

    I can also see the above information which you shared with me when I inspect the table with firebug. In fact I am making this page for someone, and I don’t have access to c panel or ftp account. Can I access this default.css file through wordpress?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you want, you can try to override this style on the stylesheets you can access, by using !important prepended on the CSS value.
    E.g

    .commentlist li.comment article[id*="comment-"] table td, .post_content table td {
     border-bottom: 0 !important;
    }

    Here’s a resource on CSS !important
    http://webdesign.about.com/od/css/f/blcssfaqimportn.htm

    Thread Starter aicsbutt

    (@aicsbutt)

    Andrew, I recently downloaded this theme and found default.css file there. It means that default.css file exist in the theme then why its not showing in the list of files when I try to edit the theme.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    As you’ve downloaded this theme, you ought to use a Child Theme or Custom CSS Manager, which allow you to make modifications without editing original theme files, otherwise modifications will erase once the theme updates.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Removing white lines showing bellow each column of my table’ is closed to new replies.