Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #455670

    Hi

    On the single post page where it lists the meta data underneath the post title it says:

    in [category] / by [author]

    I want to change the word ‘in’ to ‘at’.

    I can’t see it in loop-index, please tell me where is the code I have to change?

    Thanks.

    #455927

    Hi Mark,

    Open includes/loop-index.php and look:

    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    

    Replace it by this:

    echo '<span class="blog-categories minor-meta">'.__('at','avia_framework')." ";
    

    Regards,
    Josue

    #456047

    Thanks!

    Could I also please ask how to change the formatting to make the category bigger using CSS?

    I tried the following but it doesn’t do anything.

    .blog-categories-minor-meta {
    font-size: 15px !important;
    font-weight: bold !important;
    }

    • This reply was modified 9 years, 5 months ago by Mark.
    #456068

    Hi!

    Please try this instead:

    .blog-categories a, .minor-meta a {
    font-size: 15px !important;
    font-weight: bold !important;
    }
    

    I like the theme of your site by the way, I rescued a dog myself about a year ago. She’s healthy and happy now :)

    Regards,
    Rikard

    #456155

    Great! Worked perfectly. Thanks a lot for your help :-)

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘how to change 'in [category]' to 'at [category]' under post title’ is closed to new replies.