Resource icon

Jazz up your bullet lists

This one overlaps adsense block, How can I fix it?
Without using z-index because it's not good looking.

Thanks !
 
Can you customize the background? With short words, that is to empty!
No it's just the bullet points it changes, the background is the message area.

This one overlaps adsense block, How can I fix it?
Without using z-index because it's not good looking.

Thanks !
No idea. I don't have that problem. All it changes is the look of the bullets when you bullet point a list.
 
You need to change the colours to suit your site - change the background to something transparent.

Look for

.message .baseHtml ol li {

and change background: #ddd to background: none - see if that works.

I haven't used this code in a while and don't have it installed currently, so it's all guesswork ;)
 
This is really creative - love it!

I wonder if it's possible to change the colour of the '*' in the bullet and the text to two separate colours, please?

Thank you!
 
Thanks. Nice!
This will not change lists style in content of Showcase tabs's.
If you want to do it with lists in your Showcase Tabs's content, easily add codes below to your "EXTRA.css":
Code:
.primaryContent ol{
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.primaryContent ol ol{
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}
.primaryContent .baseHtml ol li {
position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
        background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
}
.primaryContent .baseHtml ol li hover{
    background: #eee;
}
.primaryContent .baseHtml ol li:hover:before{
    transform: rotate(360deg);
}
.primaryContent .baseHtml ol li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}
.primaryContent .baseHtml ul li {
position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
        background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
}
.primaryContent .baseHtml ul li hover{
    background: #eee;
}
.primaryContent .baseHtml ul li:hover:before{
    transform: rotate(360deg);
}
.primaryContent .baseHtml ul li:before {
    content: '*';
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}
I don't know how much logical or standard is my work, but the result this:
2015-12-04_20-13-05.webp
Hope you like this.
 
Thanks. Nice!
This will not change lists style in content of Showcase tabs's.
If you want to do it with lists in your Showcase Tabs's content, easily add codes below to your "EXTRA.css":
Code:
.primaryContent ol{
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.primaryContent ol ol{
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}
.primaryContent .baseHtml ol li {
position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
        background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
}
.primaryContent .baseHtml ol li hover{
    background: #eee;
}
.primaryContent .baseHtml ol li:hover:before{
    transform: rotate(360deg);
}
.primaryContent .baseHtml ol li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}
.primaryContent .baseHtml ul li {
position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
        background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
}
.primaryContent .baseHtml ul li hover{
    background: #eee;
}
.primaryContent .baseHtml ul li:hover:before{
    transform: rotate(360deg);
}
.primaryContent .baseHtml ul li:before {
    content: '*';
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}
I don't know how much logical or standard is my work, but the result this:
View attachment 123202
Hope you like this.
Nice expansion :)
 
@Lisa

Hello! Lovely work but I do have one question, as it stands the background for the bullet points go all the way to the end of the postbit. Is there a way to limit it so the background only shows for the space where text is present? Alternatively would there be a way to just limit it with a static px value.

Thanks!
 
  • Like
Reactions: TJK
Top Bottom