• Resolved westerdaled

    (@westerdaled)


    Hi

    Bascially, the resume preview and page with shortcodes look great but the rest of my blog looks not so good as the font size as increased for all pages and post.

    Anyway, I can localalize your font change fix so it is just for the resumme’ plugin – happy to hack the csss if needed.

    Still a great plugin btw.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The issue is that the theme you’re using is setting the font size to something tiny and then scaling up everything else, probably by using percent font sizes. In my opinion, this is the wrong way to do it. The “Tiny Fonts Fix” applies an HTML level font size of 15px, which then in turn will make the resume look right because it’s using “rem” font sizes (the best way, imo). Unfortunately this makes the rest of your site way bigger because of those percent sizes.

    The only way around this is to manually scale up each part of the resume that needs to be scaled up. You would need to use Chrome/Safari/Firefox developer tools to get the class names and then apply CSS to adjust those sizes.

    Here’s the main issue:

    Thread Starter westerdaled

    (@westerdaled)

    Hi @boxstudio

    Thanks for explaining the issue. Oh well,I created a local GIT repo last night so I can track changes to styles.css and, or the styles in plugins like yours. Is it your suggestion to override the markup in you plugin through the child theme styles.css ?

    Yeah that’s what I would do. Sorry for the hassle!

    Thread Starter westerdaled

    (@westerdaled)

    C’est La vie I guess!

    Thread Starter westerdaled

    (@westerdaled)

    Hi

    I have been able to make some changes but I am not sure I have the same aesthetic affect as your check box for fixing tiny theme fonts. Happy to follow up on any suggestions.

    
    /* fixing Resume builder small fonts when using short codes on a default page or post layout
    ---------------------------------------------------------------------------------------------------- */
    
    .rb-resume-header .rb-resume-title { font-size:1.5rem !important; }
    .rb-resume-header .rb-resume-subtitle { font-size:1.3rem !important;  }
    
    .rb-resume-header .rb-resume-introduction { font-size:1.7rem !important; }
    			  
    /* Resume Body Override */
    .rb-resume-body .rb-resume-exp-block .rb-resume-exp-description { font-size:1.7rem !important;  }
    .rb-resume-body .rb-resume-exp-block .rb-resume-exp-job-degree { font-size:1.3rem !important;  }
    /* Compact styles skills override */
    .rb-resume-compact .rb-resume-skills .rb-resume-skills-block .rb-resume-skill-title { font-size:1.6rem !important; }
    
    .rb-resume-skills-block .rb-resume-skill-description {
        font-size: 1.3rem !important;
    
    }
Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Issue with does your resume tiny fonts -setting’ is closed to new replies.