Home › Forums › WoodMart support forum › image on footer
image on footer
- This topic has 13 replies, 3 voices, and was last updated 6 years, 11 months ago by Artem Temos.
-
AuthorPosts
-
January 30, 2018 at 4:16 pm #36176
leds-prosParticipantHello,
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-ProsAttachments:
You must be logged in to view attached files.January 30, 2018 at 6:21 pm #36197
Artem TemosKeymasterHi,
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.aspRegards
January 31, 2018 at 10:59 am #36403
leds-prosParticipantThanks 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,January 31, 2018 at 1:17 pm #36472
Artem TemosKeymasterWe tested your website in Firefox a few times but never face such kind of issue.
January 31, 2018 at 3:27 pm #36526
leds-prosParticipantVery 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.January 31, 2018 at 3:57 pm #36543
Artem TemosKeymasterYes, 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 onclick
instead ofmouseover
.January 31, 2018 at 4:08 pm #36548
leds-prosParticipantIs it complicate for you to do this ?
January 31, 2018 at 4:12 pm #36552
Artem TemosKeymasterWe will prepare a custom code for this and post it to you tomorrow.
January 31, 2018 at 4:17 pm #36556
leds-prosParticipantThanks 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 ?February 1, 2018 at 9:42 am #36724
Artem TemosKeymasterTry 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.
February 1, 2018 at 10:18 am #36739
leds-prosParticipantSorry 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.February 1, 2018 at 12:47 pm #36766
Artem TemosKeymasterBut you inserted a wrong code for both JS and CSS sections https://prnt.sc/i8mxrl
February 1, 2018 at 1:00 pm #36779
FireballParticipantSORRY ! 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-ProsFebruary 1, 2018 at 1:04 pm #36784
Artem TemosKeymasterGreat, you are welcome!
-
AuthorPosts
The topic ‘image on footer’ is closed to new replies.
- You must be logged in to create new topics. Login / Register