Adelle Theme – put the imprint to the footer?

  • Unknown's avatar

    Hey there,
    is it possible to get a menu in the footer? I would like to remove my imprint to the bottom of my blog and not in the main menu…
    Thanks a lot in advance!
    Sandy

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    You have infinite scrolling enabled on your blog pages so I wouldn’t advise adding anything to the semi-transparent footer as it’s not always visible. I’m not sure I understand which section you mean when you say “imprints”, can you describe in a bit more detail what you’d like to achieve?

  • Unknown's avatar

    At the moment, the site I want to have at the end of my blog is called “legal info”. I have to work on it and change it a little bit and then I want it on the bottom of my blog. Is there any possibility?

  • Unknown's avatar

    Hi Sandy, links cannot be added to the footer area using CSS. CSS is a styling document used by the browser to place and style the elements of a webpage.

    If you were to disable infinite scrolling, it would be possible to move a text widget down and to the lower right of the ribbon at the bottom. The following is a sample of what the basic code would look like. Where it says #text-2, is the ID for a specific widget (only a sample number). You would have to add the text widget and then look at the source code, using the web inspector in your browser to find the ID for that particular widget and then replace “2” with that number.

    .site {
        position: relative;
    }
    #text-2 {
        position: absolute;
        bottom: -35px;
        right: 0;
        z-index: 1;
    }

    The bottom and right values may have to be adjusted to get the text positioned correctly, but this fix should work just fine on desktops, tablets and phones.

    Here are some support pages on Text Widgets to guide you in creating the widget.
    Text Widget
    Text Widget Links

  • The topic ‘Adelle Theme – put the imprint to the footer?’ is closed to new replies.