How to change Font ?
-
Hi Everyone
I am having difficulties making the font the same throughout my homepage.
Can anyone help ? (I am new at wordpress as well as creating a website)
How do you make the summary of the article featured on the homepage to show as 2 lines ?
How do you chage the space between 2 lines ?
Here is the website in question tometsophie.fr
Thanks. Have a great day !
Tom & Sophie
Mod
Quote:I am having difficulties making the font the same throughout my homepage.Graphene Settings >> Display Options >> Text Style Options >> “Content Text”
Enter the font that you want in the “Text font” box. (I’m not sure what the French translation of all that is.)
Quote:How do you make the summary of the article featured on the homepage to show as 2 lines ?Edit the post. Insert the “More” tag where you want the summary to end.
Quote:How do you chage the space between 2 lines ?You will have to change the
line-heightattribute via CSS, but doing so requires that you know which element you want to change the line height of. Where on your (very interesting) site did you want to achieve this?Quote:How do you make the summary of the article featured on the homepage to show as 2 lines ?Add this to your child theme’s
functions.phpfile. it will limit the homepage pane excerpt length to 20 words. I think that will end up in only two lines on homepage panes.<?php
function graphene_custom_homepage_pane_excerpt_length(){
graphene_set_excerpt_length( 20 );
}
add_action( 'graphene_before_homepage_panes', 'graphene_custom_homepage_pane_excerpt_length' );
?>
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
