Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #302186

    Hi again

    I’m trying to remove the vertical line that separates my sidebar on all the blog posts.

    Ive tried using the below code in the quick css without success.
    .blog .sidebar, .blog .content { border: none !important; }

    Thanks in advance

    #302249

    Hey Arran!

    Thank you for using our theme.

    Try the following:

    
    .single .content {
        border-right-style: none;
        border-right-width: 0px;
    }
    
    .single .sidebar {
        border-left-style: none;
        border-left-width: 0px;
    }
    
    

    The link you gave me was to a single post, but you can replace .single with .blog.

    Best regards,
    Günter

    #302453

    Hi again

    That didn’t work with either of the two methods.

    #302491

    Hi!

    Please add !important rule as following

    .single .sidebar, .single .content {
    border: none!important;
    }

    Best regards,
    Yigit

    #302497

    Yigit, you are the man…

    Any chance you can help with this open question?
    https://kriesi.at/support/topic/layout-issue-3/
    Cheers

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘SideBar Vertical Line’ is closed to new replies.