Support » Fixing WordPress » Full screen a.o. ? to Karuna theme

  • Resolved birgittem

    (@birgittem)


    Hi
    I have learned that I need to have my website on wordpress.org instead of .com in order to move it to simply.com.
    It’s moved but I still have a few unresolved issues.
    1. I can’t get a full screen as I had before at https://systemrens.wordpress.com/
    2. The fontsizes are different. How do I change that?
    3. The headlines aren’t bold. How do I change that?

    Please help…

    The page I need help with: [log in to see the link]

Viewing 3 replies - 16 through 18 (of 18 total)
  • Moderator Mel Choyce-Dwan

    (@melchoyce)

    WordPress.org doesn’t have a good way to resize all of your fonts at once yet, unfortunately — the best way would be adding some custom CSS to Customize > Additional CSS:

    
    /* Reduce font size of headings */
    h1, .entry-title { font-size: 30px; }
    h2 { font-size: 22px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    h5 { font-size: 14px; }
    
    /* Make headings bold */
    h1, .entry-title, h2, h3, h4, h5 { font-weight: bold; } 
    
    /* Reduce font size of top announcement bar */
    .top-bar { font-size: 10px; }
    
    /* Reduce font size of navigation */
    .main-navigation { font-size: 0.7rem; }
    
    /* Reduce font size of content on mobile */ 
    .page-template-front-page .site-main > .hentry:first-of-type .entry-content, .entry-summary { font-size: 14px; }
    
    @media screen and (min-width: 768px) {
        .page-template-front-page .site-main > .hentry:first-of-type .entry-content { font-size: 20px; }
        .widget-title { font-size: 14px; }
        .footer-widgets-wrapper .widget { font-size: 13px;}
    }
    
    /* Hide site credit */
    .site-info {
        display: none;
    }
    

    If you download the Jetpack plugin, you’ll be able to use the map and contact form again: https://wordpress.org/plugins/jetpack/

    I think that should cover most of what you’re looking to update!

    Thread Starter birgittem

    (@birgittem)

    Thank you SO much for your help. I’m done!

    Moderator Mel Choyce-Dwan

    (@melchoyce)

    Awesome!! Glad I could help.

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Full screen a.o. ? to Karuna theme’ is closed to new replies.