Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1322096

    yinon2b
    Participant

    Hi there
    1. I have placed an image on my footer but the image bottom is cropped. on some pages it doesnt align to the bottom. How can I have the full image stick to the bottom.
    adamamed.com is my site. on that page it float a bit.
    2. How can I align the menu to the right.
    3. Is there a way to move the menu down to the line of the bottom of the image, leaving the logo in it’s place?
    Thanks again for the lovely theme and support
    Yinon

    #1322132

    Christian
    Moderator

    Hey Yinon,

    1. I’ve checked your image and it’s flushed in the bottom. Can you give us a screenshot of what you’re seeing?

    2. Please add the code below in your Appearance > Customize > Custom > Global CSS

    .x-navbar .desktop .x-nav > li > a {
        text-align: right;
    }

    3. Can you give us a sketch of what you’re trying to achieve?

    Thanks.

    #1322645

    yinon2b
    Participant

    Hi
    Thanks for the quick response.
    I would like to have jpg 1 fully on the footer of the site. Now you can see only the top half.
    On jpg 2 you can see how it floats on some pages. can’t see what have I done wrong.
    I used
    .x-colophon.bottom {
    background-image:url(“http://www.adamamed.com/wp-content/uploads/2016/12/footerBGwhite3.png”);
    }
    to have the image on my footer.
    also you can see that it appears like pattern widthwise. What can be done?
    3. The menu is aligned to the right now, as should be in Hebrew, But I would like to move the menu slightly to the left (stil aligned to the right) and down, leaving the logo at it’s current position/
    Thank you
    Yinon

    #1322732

    Joao
    Moderator

    Hi,

    Regarding your menu please add the following code to Appereance > Customizer > Custom > CSS

    .x-navbar-fixed-left .desktop .x-nav, .x-navbar-fixed-right .desktop .x-nav {
        margin-right: 22%;
    }

    Regarding your footer on what specific page you are facing the issue?

    Thanks

    #1322884

    yinon2b
    Participant

    Thank you! It works fine now.I used same css to alter the vertical posision.
    Regarding the footer, I have it on all pages. The image is cropped in the bottom, so only the upper part of the image is showing, and it looks as if the image is aligned to the left and there is another image next to it partially.
    If you compare the attached image, to the footer on the site it is quite obvious. On the other image (jpg 2) you can see that the image is not flushed to the bottom and still is cropped.

    Thanks
    Yinon

    #1323429

    Christopher
    Moderator

    Hi there,

    Please update your code to :

    .x-colophon.bottom {
        background-image: url(http://www.adamamed.com/wp-content/uploads/2016/12/footerBGwhite3.png);
        background-size: contain;
    }

    Hope it helps.