• Resolved faglork

    (@faglork)


    On the bottom of the left sidebar is a 2-pixel line which covers about a 3rd of the width of the sidebar. I need to get rid of it, but I can’t find it with any dom inspector. How is it created?
    I need to get rid of it since it looks awkward in my design.

    Best regards,
    Alex

Viewing 5 replies - 1 through 5 (of 5 total)
  • can you please provide Link

    Thanks

    Thread Starter faglork

    (@faglork)

    https://tinyurl.com/y84qyec6

    bottom of left column, right above the footer.

    When I set the left sidebar to display:none, the green line vanishes with the sidebar, but I have not been able to find it with any DOM inspector ??

    Cheers,
    Alex

    hi

    In your left sidebar aside h3(widget-title) contain after which create the line. maybe this line for heading underline

    If you want to keep it as heading underline please make .sidebar .widget-title as position:relative
    .sidebar .widget-title {position:relative!important}

    and you want to remove add below css code in your style.css

    .left.sidebar h3.widget-title:after {
    display: none;
    }

    thanks

    Thread Starter faglork

    (@faglork)

    That did it – thanks!

    I am curious – how did you find that? None of the DOM inspectors in Firefox/Chrome/Edge shows anything for h3.widget-title:after that could produce a line.

    I can find it now in the css – but I would never have searched for .widget-title, since there are 3 titles in the sidebar but only one line: because of the position:absolute they are all three at the same position, looking as only one …

    Thanks again,
    Alex

    hi

    if you pass position absolute to any div or section it will display but it didn’t consider width of parent div or section. actually all three lines was at same place overlapping each other.

    the logic behind this was position relative create boundary of absolute section so it cant go beyond the relative section

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to get rid of the line at bottom of sidebar?’ is closed to new replies.