Some designs changes for forever theme

  • Unknown's avatar

    On the nav menu in your sidebar add the following to decrease spacing between the menu items.

    #secondary #nav_menu-2 ul > li {
        padding-top: 0;
        padding-bottom: 0;
    }
  • Unknown's avatar

    thanks a lot!
    Yea I want the search box next to the title

  • Unknown's avatar

    To move the search up beside the title, we have to do a few things. Add this to your custom CSS at the very end and see what you think. We can take away the search title if you wish.

    #page {
        position: relative;
    }
    #site-title {
        text-align: left;
    }
    #search-2 {
        position: absolute;
        top: 40px;
        overflow: visible;
        right: 3.64583%;
    }
    #search-2 .widget-title {
        margin-bottom: 0;
        padding-bottom: 10px;
    }
    #search-2 input[type="text"] {
        border-color: #777;
    }
  • The topic ‘Some designs changes for forever theme’ is closed to new replies.