Truly Minimal: nav bar & font size

  • Hi,

    I just switched over to the Truly Minimal theme and need help with a couple things.

    First, I’d like to remove the double arrows within the navigation bar and have the nav bar float right.

    Secondly, I’d like to reduce the font size of each post’s title (without reducing the heading sizes in the widgets).

    thank you!

    The blog I need help with is: (visible only to logged in users)

  • Hi there, to remove the double arrows on menu items with submenus, add the following to your custom CSS.

    .navigation-main li a:not(:only-child):after {
        content: "";
    }

    To float the nav menu items to the right, add the following.

    .navigation-main ul {
        float: right;
    }

    For the font size with your custom font, add the following and adjust the size to your liking.

    .wf-active .entry-title, .wf-active .entry-title a {
        font-size: 40px;
    }
  • The topic ‘Truly Minimal: nav bar & font size’ is closed to new replies.