Home Forums WoodMart support forum image on footer

image on footer

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #36176

    leds-pros
    Participant

    Hello,
    I want to have the footer as in attachment. But it seems that there is an error with the picture, and I don’t know how to correct it.
    Is possible you have a look ?
    Thanks,
    Leds-Pros

    Attachments:
    You must be logged in to view attached files.
    #36197

    Artem Temos
    Keymaster

    Hi,

    This error says that you should add alt attribute to your <img> tag. See an example here https://www.w3schools.com/tags/att_img_alt.asp

    Regards

    #36403

    leds-pros
    Participant

    Thanks a lot, it solves the problem.
    Otherwise, I have some trouble with “My account” in the header.
    With Firefox (but not with Safari), when I want to log in, the window appears but once I have completed my ID and password, clicked on login, the window closes but nothing happens. So I have to reopen it to click on login a second time for it to work.I would be glad if you can find a solution.
    Best regards,

    #36472

    Artem Temos
    Keymaster

    We tested your website in Firefox a few times but never face such kind of issue.

    #36526

    leds-pros
    Participant

    Very strange, in firefox with another computer this is the same thing… the windows diseapred when you are choose an ID as the attachment…

    Attachments:
    You must be logged in to view attached files.
    #36543

    Artem Temos
    Keymaster

    Yes, it is a known issue but we are not able to fix it. When you move your mouse to the browser autocomplete selections :hover state is removed from the login window and it is hidden by CSS. The only one solution we can propose you here is to change the event for showing this window. It will be shown on click instead of mouseover.

    #36548

    leds-pros
    Participant

    Is it complicate for you to do this ?

    #36552

    Artem Temos
    Keymaster

    We will prepare a custom code for this and post it to you tomorrow.

    #36556

    leds-pros
    Participant

    Thanks a lot. I hope it is not so much work for you.
    Otherwise, when you click on “Log out”, we have to confirm to it on my account page. Is it possible to log out directly ?

    #36724

    Artem Temos
    Keymaster

    Try to add the following code snippet to the Custom CSS area in Theme Settings to do this

    .woodmart-header-links > ul > .menu-item-register:hover > .sub-menu-dropdown, .woodmart-header-links > .menu-item-register > li > .sub-menu-dropdown{
        visibility: hidden;
       opacity: 0;
        pointer-events: none;
        animation: unset;
        -webkit-animation: unset;
    }
    .woodmart-header-links > ul > .menu-item-register > .sub-menu-dropdown.login-opened{
       visibility: visible;
       opacity: 1;
        pointer-events: visible;
        animation: unset;
        -webkit-animation: unset;
    }

    and this part to the Custom JS

    jQuery('.menu-item-register a').on('click', function(e){
       e.preventDefault();
       jQuery(this).siblings('.sub-menu-dropdown').toggleClass('login-opened');
    })

    As for the logout so it is how WooCommerce works and it doesn’t depend on our theme.

    #36739

    leds-pros
    Participant

    Sorry to have to say that.
    But unfortunatly, the mouse hover is still working, and the windows of “My account” is always desappears when you have selected an saved ID.

    #36766

    Artem Temos
    Keymaster

    But you inserted a wrong code for both JS and CSS sections https://prnt.sc/i8mxrl

    #36779

    Fireball
    Participant

    SORRY ! I don’t know what’s happen and how there was so change.
    Indeed, now mouse over is diseable but the problem with the windows and log-in are solved.
    Thanks a lot,
    You can close this post
    Best Regards,
    Leds-Pros

    #36784

    Artem Temos
    Keymaster

    Great, you are welcome!

Viewing 14 posts - 1 through 14 (of 14 total)

The topic ‘image on footer’ is closed to new replies.