Suits theme – CSS request

  • Hi there,
    Would appreciate some help with the main menu bar:
    1. How can I completely remove the Search icon after that, how can I center the menu items?
    2. If I decide to keep the Search, is there any way to make it expand to the right instead on the left?

    Many many thanks in advance
    Nondas

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

  • Hello there,

    Let me try to help you.

    1. How can I completely remove the Search icon after that, how can I center the menu items?

    .site-header .search-form{
      display: none;
    }
    ul.nav-menu{
      padding: 0;
      text-align: center;
    }
    .nav-menu li {
      float: none;
      display: inline-block;
    }

    2. If I decide to keep the Search, is there any way to make it expand to the right instead on the left?

    I’m afraid it can’t be done by css.

  • The topic ‘Suits theme – CSS request’ is closed to new replies.