• Resolved triplebit

    (@triplebit)


    I paste pages content into my pages and I see table borders everywher.
    Is there a way to remove them?
    Reagrds
    I. Lesher

Viewing 11 replies - 1 through 11 (of 11 total)
  • Are you using a child theme or a custom CSS plugin?

    Please paste the link of your page for better understanding.

    Usually, while pasting from Office Documents, it is better to use ‘Paste as Plain Text’ option (You will see a sign ‘T’ on clipboard above the post writing area).

    Thread Starter triplebit

    (@triplebit)

    Thanks alot esmi and mybdbis
    I use a child theme of “Local Business”.
    Here is a link (most menu elements reflect this problem).
    http://triplebit.com/wp3.5.1/?page_id=26

    Thanks in advance
    I. Lesher

    In your stylesheet of child theme, do this:

    .table {
        border: 1px solid #FFFFFF;
    }
    
    .td, th {
        border: 1px solid #FFFFFF;
    }
    Thread Starter triplebit

    (@triplebit)

    Thanks again mybdbis
    I tried to implement your advice but nothing helped.
    Actually I tried it twice:
    1. Directly in style.sys of the child
    2. In the Styling Options of the Theme Options inside the dashboard

    In both cases I could see no change in the outcome.
    Regards
    I. Lesher

    Hi triplebit, I have checked your page and inspect through Firebug. Its still showing below css, meaning no changes has been done

    .td, th {
        border: 1px solid #CCCCCC;
        padding: 3px;
    }

    I hope you activated your Child Theme correctly.

    Go to the Dashboard, then go to ‘Editor’ under ‘Appearance’

    If you activated your Child Theme correctly, by default it will open the stylesheet (style.css) of your Child Theme. Just paste below code at the end:

    .td, th {
        border: 1px solid #FFFFFF;
    }
    Thread Starter triplebit

    (@triplebit)

    Thnaks mybdbis
    Since I tried your advice on a local installation you couldn’t see it, but after your last answer I’v done it directly on Triplebit site and I also left the code as follows(at the end of style.css):
    Thanks again
    I. Lesher

    /*
    Theme Name: Local Business Child
    Theme URI: http://triplebit.com/
    Description: Child theme for the Twenty Thirteen theme
    Author: Izack Lesher
    Author URI: http:///triplebit.com/
    Template: local-business
    Version: 0.1.0
    */

    @import url(“../local-business/style.css”);

    .td, th {
    border: 1px solid #FFFFFF;
    }

    Checked again, its still showing below. You also can verify by right click on the mouse pointing on the table, and use Firebug or Check Element

    td, th {
        border: 1px solid #CCCCCC;
    }

    Did your Child Theme activated?

    Thread Starter triplebit

    (@triplebit)

    Ok it worked,
    Just made it again imy local installation and it simply worked…

    Thanks.
    I must thank you for the patience and time that you spent for that…
    Regards
    I. Lesher

    With pleasure. Glad it worked.

    Dont forget to mark this topic ‘resolved’.

    All the best!!

    Thread Starter triplebit

    (@triplebit)

    I beleieve ir was completely nt fault
    Thanks all, especaily mybdbis
    I. Lesher

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Remove table borders inside pages’ is closed to new replies.