• dear community,

    how to surpress & hide black bars in the wp2014-theme: visibile in the content-sidebar

    see them in the content sidebar at the page:
    http://www.ex-libri.org/

    note it is still beta beta

    you can see the black bars at the top of the rigth column
    above the “ex-libri-facebook-page-widget” and
    below – and so on,.,.

    love to hear from you

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to update style.css file, But its not recommended because if you update the theme this code also update, Better you can create child theme

    Line Number : 2684

    .content-sidebar .widget .widget-title {
      border-top: 5px solid #000;
      color: #2b2b2b;
      font-size: 14px;
      font-weight: 900;
      margin: 0 0 18px;
      padding-top: 7px;
      text-transform: uppercase;
    }

    to

    .content-sidebar .widget .widget-title {
      border-top: none;
      color: #2b2b2b;
      font-size: 14px;
      font-weight: 900;
      margin: 0 0 18px;
      padding-top: 7px;
      text-transform: uppercase;
    }

    Try this in your child theme’s stylesheet:

    .content-sidebar .widget .widget-title {
    	border-top: 0;
    }

    And if you want to get rid of the light gray border around the sidebar itself:

    .content-sidebar {
    	border: 0;
    }
    Thread Starter say_hello

    (@say_hello)

    hello you both – hi a2ztechnologies and stephencottontail

    many thanks for all the hints.

    note i ve installed the Simple Custom CSS plugin.

    some of the above mentionede code i can try in this plugin – can ´t i?

    again many thanks

    Yes you can do it, Better you can use stephencottontail code

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘how to surpress & hide black bars in the wp2014 content-sidebar’ is closed to new replies.