Can anyone help me figure out how to fix my sidebar? You can see it here:
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.
Can anyone help me figure out how to fix my sidebar? You can see it here:
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.
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;
}
Thank you so much, tamilsweet. That surely did the trick. I really appreciate your brilliance :)
This topic has been closed to new replies.