Support Forum

Template Tags Plugin

JM Joseph Mellors
Joseph Mellors
Member

Hi all,

How can I format the ‘Recent Forum Posts’ widget so that it looks like it does on this site?

I have just added the widget to my footer on www.omggay.com

Regards,

Joseph

3 Answers

New Answer

MP Mr Papa
Mr Papa
Member

we provide generic classes in all the template tags so you can add the css styling you want for you site as not everyone wants the same fixed styling…

you can try adding ours to your sp theme – we recommend making a child theme before editing a theme – or perhaps the custom css section on forum – themes – custom css…

#spRecentPostsTag {
    text-align: left;
}
#spRecentPostsTag .spListItemTag {
    font-size: 90%;
    padding-bottom: 15px;
}
.spListItemTag {
    line-height: 1.3em;
    padding: 3px 0 1px;
}
#spRecentPostsTag .spAvatar {
    float: left;
    margin-top: 5px;
    padding-bottom: 20px;
}
.spListItemTag img {
    margin: 0 10px 0 0;
    vertical-align: middle;
}

but its effectiveness might be dependent on what your wp theme may do to the base classes…

JM Joseph Mellors
Joseph Mellors
Member

Hi Steve,

Thank you for your prompt response.

The widget now works as desired, would it be possible to remove the underline on title links and bold them instead though?

Regards,

Joseph

YS Yellow Swordfish
Yellow Swordfish
Member

Try

.spListItemTag a {
    text-decoration: none;
    font-weight: bold;
}

which should do it