• Hi all,

    Is there a way (probably by CSS) that I can put a divider between my main blog posts and my sidebar with my widgets in? (a think 1 or 2 pixel wide line in the theme colour of blue would suffice)

    Website link

    Thanks
    hop3y

Viewing 3 replies - 1 through 3 (of 3 total)
  • .right-sidebar {
        border-left: 1px solid rebeccapurple;
    }

    Add to your custom css plugin.

    If you want the border to stretch all the way down your contents, rather than ending when your sidebar ends, replace the above with this instead.

    main#main {
        border-right: 1px solid #211851;
    }
    Thread Starter hop3y

    (@hop3y)

    Excellent, thanks you two!

    How would I turn the separator line between posts the same colour?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Responsive II] Separator between sidebar and main blog posts’ is closed to new replies.