Random Numbers On Sidebar

Mar 18, 2015 14:13


Account Status: All
Theme: At least Flexible Squares maybe more....
Actions: Random Numbers on Sidebar

I don't know what LJ is doing but they are making all sorts of issues. As you can see there are numbers popping up on this sidebar. I've never encountered this before but suddenly there they are.

What they are is essentially numbering for a list. It is a long explaination but your links and tags are essentially a bulleted list that has been customized with coding by LJ and layout makers. Now numbers are showing up.

In your coding you might see something like this:
.sbarbody2, li.sbaritem2 {
padding: 5px;
margin: 0px 0px 0 10px;
font-family: "Abel", arial, sans-serif;
font-size: 14px !important;
text-transform: lowercase;
text-align: left;
}

.sbarbody {
margin:0;
padding: 5px;
padding-bottom: 5px;
}

What you'll need to do is add a line to each of these sections which you will find in the Sidebar coding section of my layouts.
list-style-type: none;

Your coding will then looking like this:
.sbarbody2, li.sbaritem2 {
padding: 5px;
margin: 0px 0px 0 10px;
font-family: "Abel", arial, sans-serif;
font-size: 14px !important;
text-transform: lowercase;
text-align: left;
list-style-type: none;
}

.sbarbody {
margin:0;
padding: 5px;
padding-bottom: 5px;
list-style-type: none;
}

The list-style-type: none officially tells your layout and coding that you do not want to see the numbers and hides them from view.

I hope this helps.

Pass the word on by reposting this message....

account: paid-permanent, !known-problems, help with: coding, #account: all, ~lj messing with our journals, .flexible-squares, help with: sidebar

Previous post Next post
Up