Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #228684

    Hi

    The standard theme sidebar for the blog page has recent posts included and the list is displayed underlined with small italic text.

    How do I change that style ?

    Cheers

    Lee

    #228871

    Hey Lee!

    Try adding this code to the Quick CSS:

    .recentcomments a, .widget_recent_entries li a {
        font-style: normal !important;
    }

    Cheers! 
    Josue

    #228929

    Hi Josue

    Thanks very much :o)
    That removed the italic thanks, how can I change font type ?

    Cheers

    Lee

    #229008

    Hey!

    Please add following code to Quick CSS as well

    .recentcomments a, .widget_recent_entries li a {
    font-family:"Times New Roman",Georgia,Serif;
    }

    Best regards,
    Yigit

    #229197

    Thanks Yigit

    I assume thats the standard font as nothing has changed, do I just subsititute other font styles in the css ?

    Cheers

    Lee

    #229202

    Hi Leee!

    Yes, you can change it to any other available font, for example:

    .recentcomments a, .widget_recent_entries li a {
    font-family: 'Arial', 'Helvetica', sans-serif;
    }
    

    Regards,
    Josue

    #229209

    Thanks guys, not having any effect yet.

    I’m adding it to the theme / Styling / Quick CSS ?

    I’ll keep trying.

    Cheers

    Lee

    #229213

    Done it !

    Must have been my mistake.

    Support here is superb, especially for us numpties !!

    Thanks ever so much.

    Size wise I can just add the size code as normal ?

    Lee

    #229223

    Yes, that would be font-size:

    .recentcomments a, .widget_recent_entries li a {
    font-size: 22px;
    }

    Regards,
    Josue

    #260556

    Dear Friends,

    Just reading through the thread… Can you please share some code that would place bullets or some spacing between the “recent posts” as they are listed in footer and sidebar widgets… or maybe a line between the posts would look good?

    You can view an example of how the posts just kind of run together in the footer here http://www.tampabaychurchplanting.com or in the sidebar widget here http://www.tampabaychurchplanting.com/blog/

    Thanks for your help.

    Sincerely,

    Boe

    • This reply was modified 10 years, 6 months ago by boeellis.
    #260560

    Hey Boe!

    Try adding this code to the Quick CSS:

    .widget_recent_entries li {
        margin-bottom: 5px;
        border-bottom: 1px dotted #d3d3d3;
        padding-bottom: 5px;
    }
    #footer .widget_recent_entries li {
        border-bottom: 1px dotted #444444;
    }

    It would be better to open a new thread next time :)

    Cheers! 
    Josue

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.