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.
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
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;
}
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
Great! Worked perfectly. Thanks a lot for your help :-)