[OFFER ALERT!] This Halloween, Get Any Premium Theme for Just $19 [GET IT NOW]
Jump to content

Jitendraa

Support
  • Posts

    109,808
  • Joined

  • Last visited

Posts posted by Jitendraa

  1. Hello,

    Thank you for contacting MyThemeShop.

    Can you please let us know which version of the theme you are using? And are you seeing any update notification there?

    You need to download MyThemeShop: Themes/Plugins Updater plugin from your account and install it on your site.

    Once installed, you need to connect your Dashboard with your account using the plugin's popup.

    When you are connected, you can see the update notification on your Dashboard and can update the theme directly from there.

    Thank you.

  2. Hello,

    This is slightly outside of our scope of support so please understand that this customization is not fully supported by us.

    However here is the basic logic:

    First you need to convert the fonts (eg. TTF or OTF format) that you have to use with @font-face. Use one of the following tools: http://fontface.codeandmore.com or http://www.fontsquirrel.com/fontface/generator to generate the fonts.

    Download the generated zip and you should have the following font formats: .eot, .svg, .ttf and .woff. Upload those font files to your server (ie. create a 'fonts' under your root folder or 'wp-content' folder).
     
    Now you need to specify the font in your CSS. The CSS can be added via Theme Option > Styling Options > Custom CSS
     
    It will look something like this:
     
    @font-face {
        font-family: "FontName";
        src: url("http://yoursite.com/fonts/fontname.eot");
        src: url("http://yoursite.com/fonts/fontname.eot?#iefix") format("embedded-opentype"),
            url("http://yoursite.com/fonts/fontname.woff") format("woff"),
            url("http://yoursite.com/fonts/fontname.ttf") format("truetype"),
            url("http://yoursite.com/fonts/fontname.svg#fontname") format("svg");
    }
    Now you may specify which elements to apply the custom font. Sample code:
     
    h1, h2, h3, h4, h5, h6, #site-logo, .post-title, .widgettitle {
        font-family: "FontName";
    }

    Please note that beyond that we are unable to assist you as this is a very personalized customization.

    Thank you.

×
×
  • Create New...