Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #49464
    Riccardo
    Participant

    Hi,

    you probably have answered this question, but I have searched and I haven’t found the exact answer.

    I would like to change the font of the site title. and only the title.

    I have the .eot and.off files for the fonts (as well as the ttf file). The fonts are free (no license required).

    I have created and activated the Catch-Kathmandu-Pro-child theme. What should I do next?

    Many Thanks
    Riccardo

    #49502
    Sakin
    Keymaster

    @Riccardo: The best option to change the font only for your site title then go to “Appearance => Theme Options => Font Family Options” and then change the site title fonts. If you don’t see your font in the list and it’s Google fonts then we can add in future version update for your use. But if this font in not available as Google Font then you need to build child theme and do the font embed.

    For Font Face Embedding, I recommend you to generate font from http://www.fontsquirrel.com/tools/webfont-generator and download your font files. You can add those font files in your child theme. For example you added your font files are WebFont.eot, WebFont.woff, WebFont.ttf and WebFont.svg in your child theme directory. Then you need to add the css in your child theme style.css as following:

    @font-face { 
    	font-family: 'MyWebFont'; 
    	src: 	url('WebFont.eot'); 
    	src:	url('WebFont.eot?iefix') format('eot'), 
    			url('WebFont.woff') format('woff'), 
    			url('WebFont.ttf') format('truetype'),
    			url('WebFont.svg#webfont') format('svg'); 
    } 
    
    #site-title {
    	font-family: 'MyWebFont', Arial, sans-serif;
    }
    #49601
    Riccardo
    Participant

    Many thanks,

    I will try this out

    Riccardo

    #49602
    Riccardo
    Participant

    Hi,
    I am using “role scoper” to control the visibility of pages to not logged in users.

    I would like NOT to display the featured content on the homepage when users are not logged in.

    How this could be done with Catch Kathmandu Pro?

    Many Thanks
    Riccardo

    #49643
    Sakin
    Keymaster

    @Riccardo: I have already replied you in http://catchthemes.com/support-forum/topic/selectively-displaying-the-homepage-featured-content/

    Please don’t post same question in 2 places. It will be difficult for us to manage.

    #49648
    Riccardo
    Participant

    My mistake.

    Sorry

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Changing fonts only for the site title?’ is closed to new replies.