Reply To: Site Help? – Font Sizes and Spacing

Homepage Community Forums Adapt Theme Support Site Help? – Font Sizes and Spacing Reply To: Site Help? – Font Sizes and Spacing

#10082
Jason M
Customer

    To increase the font size look at line 1532 in your style.css –

    .genesis-nav-menu {
    color: #ccc;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    }

    The widget title can be found on line 941 –

    .sidebar .widgettitle {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    }

    For the spacing on the homepage, take a look at line 1754 –

    .entry {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    padding: 0 0 24px;
    padding: 0 0 1.5rem;
    }

    Since they use px and rem for padding/margin and font sizes, you’ll need to change both the px and rem size. I would erase the rem and adjust the px to figure out what size you need, and then go to a site like this – https://offroadcode.com/prototypes/rem-calculator/ to figure out the equivalent size in rem.

    In the future you may want to split up your questions into separate threads since that’s part of Appfinite’s rules here to make everything easier to search – https://appfinite.com/topic/forum-rules/

    I watched a couple of your videos by the way, and I’m loving it! I can definitely relate to this one – http://lanceweiss.com/do-you-ever/ Keep up the good work!