Support » Plugin: Page Builder by SiteOrigin » How do we get rid of 1px grey border

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Greg Priday

    (@gpriday)

    This might be the same issue that Marcoevich had

    http://wordpress.org/support/topic/widget-top-line

    Looks the same issue indeed 😉

    The actual class from my theme that had the border-top was .panel

    So you might want to look for that class in your css files 🙂

    Thread Starter Pigo3934blog

    (@pigo3934blog)

    Using FireBug from Mozilla we found the code.

    But in DreamWeaver we cannot find it.

    Can you please give us the exact folder, file and line of code to look for?

    Thanks in advance.

    Thread Starter Pigo3934blog

    (@pigo3934blog)

    Found it.

    It was within the theme at “framework” –> “CSS” –> shortcodes.css file

    .panel {
    
    border: 0px solid #d3d3d3;      /* Was 1px. Was causing a border to form around widget created by the Page Builder plugin */            
    
        clear: both;
        padding: 20px 20px 0px 20px;
        -webkit-box-shadow:0px 1px 1px 0px rgba(180, 180, 180, 0.1);
           -moz-box-shadow:0px 1px 1px 0px rgba(180, 180, 180, 0.1);
                box-shadow:0px 1px 1px 0px rgba(180, 180, 180, 0.1);
    
    }
    Thread Starter Pigo3934blog

    (@pigo3934blog)

    Resolved.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do we get rid of 1px grey border’ is closed to new replies.