Using theme menu font for a small text piece only the static home page..

  • Unknown's avatar

    Hi
    Im looking to add a section of text on my static home page main which is the same font/possible size as the theme menu custom font.

    My theme is Ixion.

    I tried to look for the font under the usual menu but it wasn’t listed so have have found out through CSS the font is:

    main-navigation ul > li > a {
    color: #d7b221;
    font-family: “Archivo Narrow”,sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;

    I would also like to be able to control the size of the text I’m taking about and only affect the text on the front static page

    Thanks in advance

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    It depends on where that text is as to what the CSS selector will be. Can you tell me which text you are wanting to change?

  • Unknown's avatar

    hi sacred path

    the text I’m looking to change to the font and upsize is below the centralised white and green logo.

    the text says “imagine a holiday home on acid….”

    thanks for looking into this

    tristan

  • Unknown's avatar

    Open your page in the editor, switch to the text tab and find this line.
    <p style="text-align:center;">
    Add the CSS class declaration as I have below.
    <p class="archivo" style="text-align:center;">
    Then add the following to your custom CSS.

    .archivo {
    	font-family: "Archivo Narrow",sans-serif;
    	font-size: 16px;
    	text-transform: uppercase;
    	letter-spacing: 1px;
    	color: #d7b221;
    }
  • The topic ‘Using theme menu font for a small text piece only the static home page..’ is closed to new replies.