Okay
  Public Ticket #1700296
How to make changes
Closed

Comments

  •   reneeturnerinteriors started the conversation
  •  2,010
    Ocean replied

    Hi,

    1, Change font for header in Archi Options -> Typography -> http://prntscr.com/kqq1x3

    2, In WP-Admin backend dashboard -> Appearance -> Widgets -> Footer Widget Area

    http://www.awesomescreenshot.com/image/1333860/4ac229fbf46e7383970c219a44b1fde3

    You can change content, edit, delete, add new, etc...

    3, Please read more this article guide: https://oceanthemes.ticksy.com/article/9479/

    Thank you

  •   reneeturnerinteriors replied privately
  •  2,010
    Ocean replied

    Hi,

    1, You can easy add custom css code here: http://prntscr.com/gbgjxt

    @import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
    .text-slider{font-family: 'Roboto', sans-serif;}
    

    Find your Google fonts: https://fonts.google.com/

    Example how to choose google font: http://prntscr.com/kr4hfr

    2, Please using the Widget Text block and edit text, logo image: http://prntscr.com/kr4ggu

    Thank you

  • reneeturnerinteriors replied

    I have already uploaded the font I want and it is working for the rest of the body. What I really need to do is change the font just on the front page - the heading that is up the top of Archi Light. I have changed the rest of the body and the headers. I really want to just change the top header which just isn't working for me. In the backcode, this is the bit I need to change:

    See in the attachment the bit that says ullwidth="yes" archi_fullheight="yes" archi_parallax="yes" el_class="fontsize40 text-dark" css=".vc_custom_1496045134732? It relates to the text you can see titles="%5B%7B%22title%22%3A%22Renee%20Turner%20Interiors%22%7D%2C%7B%7D%2C%7B%22title%22%3A%22Personal.%20%20%20%20Quality.%20%20%20%20Unique.%22%7D%5D"  I want to use my BlackJack font that I have uploaded already and overwrite. I have tried to overwrite it already but it doesn't work. Do I have to create a CSS and if so what do I have to write?

  • reneeturnerinteriors replied

    Sorry this is the attachment that I meant to put in the reply below:


  •  2,010
    Ocean replied

    Hi,

    You can easy add custom css code here: http://prntscr.com/gbgjxt

    .text-slider{
        letter-spacing: 5px;
        font-family: 'Montserrat',Arial, Helvetica, sans-serif;
        font-weight: 400;
        line-height: 72px;
        text-transform: uppercase;
    }
    .fontsize40 .text-slider {
        font-size: 40px !important;
    }
    .text-dark .text-slider {
        color: #222;
    }
    

    Thank you