• Resolved bbbelleville

    (@bbbelleville)


    Hi there!
    Is it possible to move the banner after body in the main page?
    Thanks for your help!
    Paola

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Styled Themes

    (@gejay)

    Hello bbbelleville,

    Is it that you want to place the banner just before the footer and after the content?

    Best Regards,
    Bidur

    Thread Starter bbbelleville

    (@bbbelleville)

    Hello Bidur,
    yes, I would like to move the banner after content and just before footer. I would like to do it using a CSS.. maybe using position, margin etc., or is there a way to write a rule to put banner after body? Thanks for your help!
    Greetings,
    Paola

    Theme Author Styled Themes

    (@gejay)

    Hello bbbelleville,
    It can be done by changing the widget area positioning. In that case you need to hire a developer separately.

    However for css solution you can apply something like this but which may not be convinient;

    @media screen and (min-width: 1024px){
        .home #page-banner {
            position: absolute;
            top: 1135px;
        }
        .home #site-footer {
            position: absolute;
            top: 1769px;
            width: 100%;
        }
    }

    Note: Please change the top offset value that adjusts within your screen.

    Thanks!

    • This reply was modified 7 years, 2 months ago by Styled Themes.
    Thread Starter bbbelleville

    (@bbbelleville)

    Hello! First of all, thanks for your help.
    I will try with CSS, but I would like to understand why it might not be convenient. May that slow the website?
    And, what is the best way? I don’t want to hire a developer because I’d like to learn it by myself … maybe the best way is through php files?
    Thanks again,
    Paola

    Thread Starter bbbelleville

    (@bbbelleville)

    Ok, understood! Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘banner after body’ is closed to new replies.