• Hi,

    Using Custom CSS, how can I place my Menu (about, contact, etc.) centered and on the bottom of the homepage (just below the circles)?

    Thanks so much.

    thisismuseum.com

Viewing 6 replies - 1 through 6 (of 6 total)
  • The only problem doing it this way is the margin percentage will need to change based on the amount of content you have on the page. Maybe someone else will have another idea.

    .home .main-navigation {
        position: absolute;
        width: 100%;
        text-align: center;
        float: none;
        margin: 60% auto;
    }

    The best way to do what you want is to edit the header & footer PHP files with if statements, unfortunately I’m not a PHP guy.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you move it in the DOM instead? That’ll be much better for everyone, including you as pointed out by batharoy.

    Thread Starter shabz

    (@shabz)

    What is the DOM and how can I do that?

    thank you.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Start by creating a Child Theme: http://codex.wordpress.org/Child_Themes

    Thread Starter shabz

    (@shabz)

    If I create a child theme and make changes there, does it override or negate the Custom CSS changes? Or do both simultaneously apply?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    The Child Theme will inherit the parent theme, so any CSS on the parent theme will be inherited via the ‘@import‘ line of code

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘putting menu at bottom of home page’ is closed to new replies.