• Hello,

    on my site I have a menue in the footer which appears above the bottom line.
    I’d like to place it below this line so that I can place the forum statistics above.

    Is there a possibility to do that?

    Greetings
    Pflanzenoma

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello Pflanzenoma,

    The line is a border at the top of the .site-info panel that contains the site title and WordPress credit.

    You can either move the border and hide the .site-info panel …

    .site-info {
    display: none;
    }
    .footer-navigation {
    padding-top: var(--global--spacing-vertical);
    border-top: 3px solid var(--global--color-border);
    }

    … or if you want to keep the .site-info you could use display: flex and flex-direction: column on the footer element to re-order the elements in the footer instead.

    Oliver

Viewing 1 replies (of 1 total)
  • The topic ‘Menue below bottom line’ is closed to new replies.