• Resolved sch_bses

    (@sch_bses)


    I’m having the problem that in the left sidebar of my lightword-themed blog above and under headlines there is a lot of space between these lines. My blog is https://schaebses.de. See e.g. the space above and under the headline “Themen” in the first sidebar.

    I deactivated all installed plugins, but also then I am still having the same problem. Actually, I thought it affects only my installation. I just realised that also on https://www.lightword-design.com/ it looks now the same way. Anyone some ideas where to search/what to do in order to get rid of that space?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • this is caused by the top margin:

    h3{font-size:1.8em;margin: 15px 0 15px;}
    in style.css of the theme.

    possible fix:
    edit new_sidebar.css:

    find this:

    .content-sidebar-2 h3{ font-size:11px; background-color:#EEE;padding:8px 10px;border-top:1px solid #DCDCDB;border-bottom:1px solid #DCDCDB;}
    .content-sidebar-2 ul{list-style:none;}

    for instance, change to this:

    .content-sidebar-2 h3{ font-size:11px; background-color:#EEE;padding:8px 10px;border-top:1px solid #DCDCDB;border-bottom:1px solid #DCDCDB;margin-top:0}
    .content-sidebar-2 ul{list-style:none;margin-bottom:15px;}
    .content-sidebar-2 ul ul {margin-bottom:0px;}

    numbers might need adjusting.

    Thread Starter sch_bses

    (@sch_bses)

    Great! Thank you! From your example I deleted the background-color and played around with the margin-numbers and this is how I finally changed your mentioned lines:

    .content-sidebar-2 h3{ font-size:11px; background-color:#EEE;padding:8px 10px;border-top:1px solid #DCDCDB;border-bottom:1px solid #DCDCDB;margin-top:0;margin-bottom:3px;}
    .content-sidebar-2 ul{list-style:none;margin-bottom:10px;}
    .content-sidebar-2 ul ul {margin-bottom:0px;}
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Lightword: Spacing in sidebar’ is closed to new replies.