• Resolved justwander

    (@justwander)


    Hello,
    I am using the Storytime theme and have some questions about customizing it.

    1)
    How can I remove the horizontal lines above the site navigation and under the post/article titles?

    2)
    How can I remove the dots between the menu entries?

    3)
    Where is the font info for the menu entries?

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Rough Pixels

    (@roughpixels)

    For the first one, copy and paste this into the Customizer’s Additional CSS tab:

    #site-branding:after {
    border: none;
    }
    
    .entry-title:after {
    display: none;
    }

    For the second question:

    .main-navigation-menu > li:after {
    display: none;
    }

    For your third question, this is what the current theme’s styling is:

    .main-navigation-menu {
        display: none;
        font-family: Domine, "Times New Roman", serif;
        font-size: 0.938rem;
        font-weight: 400;
        margin: 0;
        padding: 20px 0;
        position: relative;
        width: 100%;
        letter-spacing: 1px;
        list-style: none;
        text-transform: uppercase;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    From that CSS code, you can see the font family used, size, etc. To override that, simply copy the code and paste it into the Additional CSS tab of the customizer and change the parts you want to change from there.

    Hope that helps?

    Best Regards,
    Andre

    Thread Starter justwander

    (@justwander)

    My knowledge stops with HTML4 and never really got into more involved stuff. Still, I can make changes and tweaks to existing work. Never dealt with “after” before.

    I was able to find the font entry just after I posted this message.

    Thank you very much for your help!

    Theme Author Rough Pixels

    (@roughpixels)

    Good to hear 🙂
    Before this thread is closed as resolved, is everything OK?

    Thread Starter justwander

    (@justwander)

    @roughpixels,
    Thanks for asking. Everything is going well.

    I have some other questions but since they are different from the ones I asked here I’ll just start a new one.

    Thanks again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Customizing Storytime’ is closed to new replies.