royaugustine
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Leaf] Can we increase the font/font-size on the slider?Thanks Tizz.
That worked.
Forum: Themes and Templates
In reply to: [Leaf] Can we increase the font/font-size on the slider?Thanks. That fixed the font size for the description. But the title on the slider is still not changed. How do we increase the font size for the title as well?
Forum: Themes and Templates
In reply to: [Leaf] Can we increase the font/font-size on the slider?Thanks for the reply tizz.
I don’t know coding. From your reply, What I understand is I have to add the below code to the custom CSS box if I want to use ‘Tahoma’ font with 16px.
.iview-caption {font-family: Tahoma;font-size: 16px;}is that enough?
Forum: Themes and Templates
In reply to: [Path] want to remove "posted in Uncategorised" from all postsThanks Sami.
It worked.
Forum: Themes and Templates
In reply to: [Path] want to remove "posted in Uncategorised" from all postsThank you Sami for the help.
It worked.Currently I am using the below code for removing the “Published by” and the “date” from the posts. (I know nothing about coding. The below code I got from another question in this forum and I just modified it)
~\wordpress\wp-content\themes\path-child\functions.php
add_filter( "{$prefix}_byline", 'my_byline', 11 ); } function my_byline( $byline ) { $byline = ''; return $byline; }Is there a way this can be accomplished by adding code to the css file? I mean, disable “published by”, “date”, “posted in” for all posts in the site.