Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS get rid of all the obnoxious white lines

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #288521
    eddmes149
    Participant

    Maybe what I’m asking doesn’t exist, but who knows.

    I am looking for a way to get rid of all the obnoxious white lines all over this site, or at least have some control over them.
    Is there a css attribute, or a small collection of attributes, that will control all borders on the site so I don’t have to hunt for each one?

    FYI: It’s a wordpress theme.

    I have tried going div by div, and that seems like it is going to take the rest of my life to do custom css for every location where a border is used. In some places it seems like there is a border, but any combination of margin, padding, background color, or border attributes seem to change nothing. Here are some things I’ve tried.

    .main_full {
    background: linear-gradient(#9e5a63, #644e5b);
    border: 0px !important;
    }

    main.discy-main-wrap discy-site-content float_l {
    background: linear-gradient(#9e5a63, #644e5b);
    border: 0px !important!
    }

    div.discy-inner-content {
    background: linear-gradient(#9e5a63, #644e5b);
    border: 0px !important;
    }

    div.hide-main-inner {
    background: linear-gradient(#9e5a63, #644e5b);
    box-shadow: none !important;
    border: 0px !important;
    }

    #288554
    Paulie_D
    Member

    What site would that be?

    #288557
    ludykraks
    Participant

    You may try using the universal selector * but this will target all elements with borders on your website including textarea. Use with caution

    Something like this:

    * {border: 0 !important; }

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.