Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #67927
    Isabella
    Participant

    Hi.

    I am working in Evolution Pro and wondered if I could change the the title and primary text font and size. I would like to change it to Robotic font. I do have google fonts installed. Just not sure how to do it

    Also, I have light grey behind an image I have put on the page which I would like to remove and a line around the border of the content that I would like to disappear.

    I’m sure there’s an easy way to fix this, but I haven’t figured it out!

    Thanks!

    #67928
    Isabella
    Participant

    I got rid of the grey behind the image. Still working on the other things.

    #67935
    Sakin
    Keymaster

    @Isabella: We are adding new following google in out Font Family option in next version update:
    ** Josefin Sans
    ** Libre Baskerville
    ** Lustria
    ** Merriweather
    ** Quattrocento
    ** Raleway
    ** Roboto
    ** Roboto Slab
    ** Valera
    So, either you need to wait for next version update. Or send me your site URL and let me know title mean all title or just site title and what do you meany my primary

    #67937
    Isabella
    Participant

    Sorry, I meant site title and primary menu. my site URL is chimera.deakinsonline.com.

    When is the next version update?

    I’ve just started with your theme but I’m loving it so far!

    Thanks for your help.

    #67938
    Sakin
    Keymaster

    @Isabella: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-title a, #site-description, #header-menu ul.menu a {
        font-family: "Roboto",sans-serif;
    }
    #67942
    Isabella
    Participant

    Fantastic!! That worked.

    And for the primary menu font size – is it possible to change that?

    Thank you very much for your help.

    #67947
    Isabella
    Participant

    I also have not been able to take away the grey border around the content. And the margin for the top of the content seems too large.

    Thanks so much for all your help.

    #67956
    Sakin
    Keymaster

    @Isabella: Yes, for font size for primary menu. You can add the following css:

    #header-menu ul.menu a {
        font-size: 14px;
    }

    You can remove the border by adding the following css:

    .hentry, 
    .widget, 
    .no-results, 
    #author-info, 
    #disqus_thread, 
    #content .error404 {
        border: none;
    }

    To remove the top padding above content, you can add the following css:

    #main {
        padding-top: 0;
    }
    #67990
    Isabella
    Participant

    Thank you for this. Unfortunately, I still have the great outline and then outside of it, the background is grey, instead of white. It’s starting to drive me crazy! 🙂 I would love to get rid of the grey border around the content and I’m not sure what is making the outer bg grey.

    #67991
    Sakin
    Keymaster

    @Isabella: You haven’t copied that css properly. There is missing dot before hentry. Replace your css:

    /* Take away the grey
    border */
    hentry, 
    .widget, 
    .no-results, 
    #author-info, 
    #disqus_thread, 
    #content .error404 {
       border: none;
    }

    with the following:

    /* Take away the grey
    border */
    .hentry, 
    .widget, 
    .no-results, 
    #author-info, 
    #disqus_thread, 
    #content .error404 {
       border: none;
    }
    #67996
    Isabella
    Participant

    Well, that was a stupid mistake on my part. And yes, it’s working perfectly now.

    Your support here is amazing. I am definitely a convert to the Catch Themes family. Thank you, thank you.

    #67999
    Isabella
    Participant

    I know you must be tired of me. But I still have too much space between the primary menu and the content, which starts with an image. I’ve tried removing margins, etc but nothing seems to work. It’s particularly bad when you look at it on a mobile device. I’d love to be able to tweak the spacing a bit under the menu before the content.

    #68001
    Sakin
    Keymaster

    @Isabella: You can add the following css:

    .no-sidebar.full-width .hentry {
        padding-top: 0;
        padding-bottom: 0;
    }
    #68003
    Isabella
    Participant

    Fantastic! Thanks!

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Change primary menu and title font to Robotic’ is closed to new replies.