Viewing 6 replies - 1 through 6 (of 6 total)
  • To decrease the spacing, add this rule using a CSS plugin like JetPack or Custom CSS Manager. Do not edit the theme’s files directly.

    ul.nav {
       height: auto;
    }

    Thread Starter wilosani

    (@wilosani)

    thanks i will try this now ??
    and what can you say about my second question ? ??
    i want to add images on menu ??

    Exactly what kind of images, and where? Do you want an image instead of the bullets on the submenu items?

    Thread Starter wilosani

    (@wilosani)

    Every menu item is going to have an ID associated with it. You can do a “view source” on the page to see what that ID is. For example, here’s what you would see for the menu item for raze 2:

    <li id="menu-item-41" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41"><a href="https://happywheels.today/other-games/raze-2/">raze 2</a></li>

    The value for id is what you would use in your CSS to add an image after the menu item:

    #menu-item-41 a::after {
       content: url(https://happywheels.today/images/raze2.jpg);
    }

    Do the same for all of the other menu items.

    Thread Starter wilosani

    (@wilosani)

    oh thanks you are great man and great coder i will try to make it today ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘i want to remove space from menu to content on personall press theme’ is closed to new replies.