• I am trying to center the header logo on the following website:

    https://www.royaltybullymagazine.com

    There is no custom css option with this theme.. In theme editor, the current settings are:

    .logoimg {
        margin: 75px 0 0 100px;
    }

    I am also trying to remove the top navigation and rss feed link and just leave the menu below the header.. Id like to remove calendar and meta..

    Thanks in advance.

Viewing 1 replies (of 1 total)
  • Bully,

    Let’s move from top to bottom. To remove the top nav and rss use this code.

    .span-24 {
      display: none;
    }

    After that, we have the logo to work with. You can keep your margins if you like them if you add the following, it will center it.

    #logoimg {
      margin-left: 50%;
    }

    To remove the calendar and meta, go to your admin panel and go to appearance > widgets and look inside the sidebar. If you do not have anything in there the theme devs have probably defaulted those widgets. You can override this by adding what you do want in there.

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘How to center header logo and remove sidebar content?’ is closed to new replies.