• Hello,
    can you tell me how i can achieve the footer menu to be horizontally instead of vertically ?
    The site is : ecke-case.com

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey hegi !

    How can I help you while the website is still wet ? come on you are asking for what is impossible :p just joking here 🙂

    Now to serious stuff Here is the solution :

    .widget_recent_entries ul li, .widget_pages ul li, .widget_categories ul li, .widget_archive ul li, .widget_recent_comments ul li, .widget_nav_menu ul li, .widget_links ul li {
       display:inline;
       margin-right:10px;
    }

    ofc change that 10px value with the value you think looks good 🙂

    Cheers and let me know how it goes 🙂

    Thread Starter hegi

    (@hegi)

    alright it works.
    Thank you very much 🙂

    and how can i show the menue in 2 columns with 3 links in each column ?

    Ok that’s easy too here you go 🙂

    .widget_recent_entries ul li:nth-child(2n + 2):after, .widget_pages ul li:nth-child(2n + 2):after, .widget_categories ul li:nth-child(2n + 2):after, .widget_archive ul li:nth-child(2n + 2):after, .widget_recent_comments ul li:nth-child(2n + 2):after, .widget_nav_menu ul li:nth-child(2n + 2):after, .widget_links ul li:nth-child(2n + 2):after {
        content: "\A";
        white-space: pre;
    }

    Let me know if you still need anything else 🙂

    Thread Starter hegi

    (@hegi)

    thank you but that doesnt work :/
    its the normal menu with an \A behind every second entry

    Did you add the 2nd code ? add it after the other provided in the 1st solution with display:inline; not display:inline-block;

    and here is a proof that if you follow just what I told you what you get

    View post on imgur.com

    ofc deciding the margin value is up to you like I said before

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Footer Menu verticaly’ is closed to new replies.