Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #84577

    Hi there,

    First of all thanks for the simple yet incredible theme!

    Questions:
    1. How can i align menu to center?
    2. How do i remove the social media icon below the logo without interrupting the icon else where?
    3. Is it possible to realign copyrights to center?

    Website:
    http://www.shahirahibrahim.com

    I’ll be grateful for any help. Thank you!

    #84609
    Mahesh
    Keymaster

    Hi @shahirahibrahim,

    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following css:

    /* Align menu to center */
    .catchbase-nav-menu li {
          float: none;
      }
      
    .nav-primary.search-enabled .menu {
        float: none;
        text-align: center;
    }
    
    ul.sub-menu {
        text-align: left;
    }
    
    /* Removing social media icons below logo */
    .sidebar.sidebar-header-right.widget-area {
        display: none;
    }
    
    /* Align copyrights to center */
    #footer-left-content, #footer-right-content {
        display: inline;
        float: none;
    }
    
    #site-generator {
        text-align: center;
    }

    Regards,
    Mahesh

    #84639

    @mahesh thank you very much!

    #84641

    Hi @mahesh

    How can i align mobile logo to center?

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Catch Base – Realign menu button’ is closed to new replies.