Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #331799
    Jennifer Olah
    Participant

    How do I change the font sizes on my site, especially the Site Identity section and Id like the menu to be bigger

    https://www.cruzancowgirls.com/

    Some of the font is barely readable at the default theme sizes. I don’t really know anything about CSS coding, but I can try to do that if someone can help me  with it. Or is there an option to pay someone to do what I want for me?

    #331811
    tikaram
    Keymaster

    @cruzancowgirl :  Login to your WordPress admin section. Go to Appearance => Customize => Additional css and add the following css.

    .site-title, .menu-toggle {
      font-size: 1.5rem;
    }
    
    .site-description {
      font-size: 1.125rem;
    }

    Let me know if this helps you out.

    Regards,
    Tikaram

    #331832
    Jennifer Olah
    Participant

    Thank you! I did also now notice that on my home page the main randomly rotating photo shows the whole photo, but on all of my other pages the random photos are cut off. The bottom half of every photo is missing. Is there a way to change that? And in cell phone more only a narrow portion of each is showing but not causing as bad an issue as the desktop version.

    #331840
    tikaram
    Keymaster

    @cruzancowgirl : Please add the following additional css and let me know if the issue gets resolved.

    @media screen and (min-width: 768px) {
      .has-header-media:not(.home) .custom-header-media {
        height: 100vh;
      }
    }

    Regards,
    Tikaram

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.