Support

Home Forums Event Espresso Premium Bullets

Bullets

Posted: February 13, 2013 at 9:35 am


goneilbell

February 13, 2013 at 9:35 am

I have a small problem that I hope is easily resolved.

I would like the listings in the event widget in my side bar to have a bullet before each event.

>Just
>Like
>This

I don’t actually want the “>” sign, I’m using an Artisteer template and the “>” bullet is a little image.

Thanks

Ged


Jonathan Wilson

February 13, 2013 at 1:02 pm

Hello There, You could use a :before Pseudo Element in your CSS.

Something like this:

 /** Add bullet to list in widget. **/
    .widget-area .widget p:before {
        content: ">";
        padding: 5px;
    }


goneilbell

February 13, 2013 at 1:23 pm

Hi Jonathan

Thanks for that, I have tried adding that to both the My Custom CSS widget and also directly into the template css and neither seem to work.

Do you have any other suggestions or know why that might be?

Thanks

Ged


Jonathan Wilson

February 13, 2013 at 1:34 pm

Have you tried adding it to the theme’s style.css?


goneilbell

February 13, 2013 at 1:36 pm

Yes I tried both, I added it to the style.css when it didn’t work in the My Custom CSS plugin


Jonathan Wilson

February 13, 2013 at 1:39 pm

Can you give me the URL to your site?


goneilbell

February 13, 2013 at 1:55 pm

http://www.teachersfp.co.uk


Jonathan Wilson

February 13, 2013 at 2:10 pm

Ah, Artisteer templates are a little different.

You should be able to use this code instead:

.art-blockcontent-body p:before {
    content: ">";
    padding: 5px;
}

Of course, you can change > to whatever you want.


goneilbell

February 13, 2013 at 2:13 pm

Thanks for that.

If I want it to show a bullter that is an image do I need to put the location of the image or just the name of the image?


Jonathan Wilson

February 13, 2013 at 2:22 pm

You can try this:

.art-blockcontent-body p:before {
        content: " ";
        background-image: url(image/path/here.png);
        padding: 0px;
    }

You’ll probably need to adjust the padding.


goneilbell

February 13, 2013 at 2:24 pm

Thanks Again :o)


Jonathan Wilson

February 13, 2013 at 3:13 pm

You’re welcome. Glad I could help.

I am marking this issue resolved. If you have another question, please start a new topic. Thanks!

The support post ‘Bullets’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso