• Can anyone help me figure out how to fix my sidebar? You can see it here:

    http://www.soft-breeze.net

    Someone else set this up for me, and I started playing around with plugins (mp3 player) and now the sidebar titles are cut off. I’m unfamiliar with coding, unfortunately.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Edit the file style.css in your theme.

    Remove the line “text-indent:-15px;” (found @ line no. 245)

    i.e.
    Change:
    .sidebar li {
    margin:0;
    padding-top:0;
    padding-right:0;
    padding-bottom:.25em;
    padding-left:15px;
    text-indent:-15px;
    line-height:1.5em;
    }

    TO:
    .sidebar li {
    margin:0;
    padding-top:0;
    padding-right:0;
    padding-bottom:.25em;
    padding-left:15px;
    line-height:1.5em;
    }

    Thread Starter sbreeze

    (@sbreeze)

    Thank you so much, tamilsweet. That surely did the trick. I really appreciate your brilliance 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sidebar Cuts Off Titles’ is closed to new replies.