Home › Forums › WoodMart support forum › Problem with Copyright box in mobile mode. › Reply To: Problem with Copyright box in mobile mode.
Aizaz Imtiaz Awan
Hello,
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.