You can change the fonts from Appearance -> Customize -> Typography. For any other change, you can add some extra CSS rules in Appearance -> Customize -> Layout Settings -> Custom CSS.
To remove the title from the hero, you have two alternatives:
1) Add an extra CSS rule in Appearance -> Customize -> Layout Settings -> Custom CSS like that: .hero-title { display: none; }
2) Install the child theme, copy the file template-composer.php from the parent theme and paste it into the child theme, then open the copied file with a text-based editor (eg. SublimeText) and remove the following code on line 27:
Awesome theme!! thanks !!
two questions
1) how can I change the Menu Font, etc, is only via CSS ?
2) how can I hide the Page Name so it s not displayed on the middle of the image..example attached
regards
Americo
Hi,
You can change the fonts from Appearance -> Customize -> Typography. For any other change, you can add some extra CSS rules in Appearance -> Customize -> Layout Settings -> Custom CSS.
To remove the title from the hero, you have two alternatives:
1) Add an extra CSS rule in Appearance -> Customize -> Layout Settings -> Custom CSS like that: .hero-title { display: none; }
2) Install the child theme, copy the file template-composer.php from the parent theme and paste it into the child theme, then open the copied file with a text-based editor (eg. SublimeText) and remove the following code on line 27:
<?php the_title( '<h1 class="hero-title">', '</h1>' ); ?>