• Resolved rsimantovjewelry

    (@rsimantovjewelry)


    Hello there,

    I am working on the website rsimantovjewelry.com and I am using OnePress theme, which I like. However, i cannot figure out how to change the size of the font and the frame size of the page header. I tried a lot of tips, but didn’t help. Any help will be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Do you mean the font size of the page titles?

    If you use your browsers Inspect Element option, or use a tool like Firebug, you can inspect any portion of your theme and find what CSS values are being applied to the elements you highlight with your mouse.

    You can add custom CSS code to your Child Theme style.css file, or by using a Custom CSS plugin.

    .page-header .entry-title, 
    .page-header .page-title {
        font-size: 18px;
    }

    The default size is 24px, adjust to suit.

    Moving your mouse over to the page-header element will reveal it has a top & bottom padding value, which you can adjust accordingly.

    .page-header {
        padding: 15px 0;
    }

    The default value is 30px, leave the 0 value at 0 as that is for left & right padding.

    Hope this helps.

    • This reply was modified 7 years, 4 months ago by ThemeSumo.
    Thread Starter rsimantovjewelry

    (@rsimantovjewelry)

    ThemeSumo, thank you for your help, I changed the font size, however the padding is still the same, the font size change was crucial

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘OnePress Theme Page Header Size’ is closed to new replies.