Home › Forums › WoodMart support forum › Problem with Copyright box in mobile mode.
Problem with Copyright box in mobile mode.
- This topic has 6 replies, 2 voices, and was last updated 5 years, 6 months ago by
Aizaz Imtiaz Awan.
-
AuthorPosts
-
September 3, 2019 at 3:40 am #141768
KHParticipantProblem with Copyright box in mobile mode. Pls see the description in the attached picture.
Attachments:
You must be logged in to view attached files.September 3, 2019 at 8:35 am #141795
Aizaz Imtiaz AwanKeymasterHello,
You are facing this issue because you have set the margin and padding to 0px from VC column and VC element under Footer Right HTML Block as shown in these screenshots: https://screenshot.net/1x8z0uo & https://screenshot.net/9njlkb9, this margin, and padding is creating an issue on mobile version of the site, so now you have to remove the margin and padding from there as shown in the given screenshots and you have to remove the margin and padding using Custom CSS in a media query and then it will work for you accordingly.
You can use the below-given CSS code to Theme Setting >> Custom CSS and save changes and check your site on desktop and mobile after removing the browser cache.
@media(min-width: 768px){ .remove-space-from-desktop .vc_column-inner { padding-top: 0px !important; } .remove-space-from-desktop .vc_column-inner div#ft-right { margin-bottom: 0 !important; } }
Best Regards.
September 3, 2019 at 10:17 am #141841
KHParticipant– No, it doesn’t work after following your instruction and clearing cached. The result can be seen in the attached picture. The result of the mobile and desktop looks the same. Previously, when I open the topic. The result of the desktop looks ok. The issue occurs only in the mobile.
– Last time I faced an issue with the height of a copyright content as you can see in this topic https://xtemos.com/forums/topic/height-of-copyright-container-after-inserting-html-block/. You instruct to add such padding and margin. And the issue was solved. Now that you told me to remove the padding and margin, the issue comes back again.
– Pls note that the html block name is “copyright”, not the one shown in your screenshot.
September 3, 2019 at 10:25 am #141842September 3, 2019 at 11:36 am #141860
Aizaz Imtiaz AwanKeymasterHello,
Please delete the old custom CSS given in my last message and paste the below custom CSS code into Theme Settings >> Custom CSS >> Custom CSS for desktop section:
.remove-space-from-desktop .vc_column-inner { padding-top: 0px; } .remove-space-from-desktop .vc_column-inner div#ft-right { margin-bottom: 0px; } .min-footer .wpb_raw_code.wpb_content_element.wpb_raw_html { margin-bottom: 0px; }
Best Regards.
September 3, 2019 at 1:53 pm #141890
KHParticipantHi, now I’ve found a solution.
Previously I have this code:
.copyright-left {margin-bottom:0px!important;}
This is the issue. Now I use this code, it’s ok now both in mobile and desktop.@media (min-width: 1025px) { .copyright-left {margin-bottom:0px!important;} }
September 3, 2019 at 2:04 pm #141893
Aizaz Imtiaz AwanKeymasterHello,
It is great to see you that you have solved the issue.
If you will need more help in the future, you can contact us anytime.
Thanks for contacting us.
Have a great day 🙂 -
AuthorPosts
The topic ‘Problem with Copyright box in mobile mode.’ is closed to new replies.
- You must be logged in to create new topics. Login / Register