adamcleod Posted March 24, 2022 Share Posted March 24, 2022 In my mobile version, I have this black rectangle that I would like to take out. How do I do that? I would also like to make the image on the home page smaller so that you dont have to scroll to see the entire image. Thank you Link to comment
adamcleod Posted March 24, 2022 Author Share Posted March 24, 2022 https://www.swenty.rocks/ is the url Link to comment
tuanphan Posted March 26, 2022 Share Posted March 26, 2022 It looks like you fixed black? To make image smaller, add this to Design > Custom CSS > then save & reload the site /* Mobile-Home-Image size */ @media screen and (max-width:767px) { .gallery-masonry { padding-left: 5vw !important; padding-right: 5vw !important; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
adamcleod Posted March 28, 2022 Author Share Posted March 28, 2022 @tuanphan the first screenshot is the mobile version and the second screenshot is the computer version. i am sorry for the confusion. I would like to make the computer version of the picture smaller. and for some reason there is that black line on the mobile version that i do not know how to take off so if you could help me with those two things i would appreciate it Link to comment
tuanphan Posted March 31, 2022 Share Posted March 31, 2022 On 3/28/2022 at 8:54 AM, adamcleod said: @tuanphan the first screenshot is the mobile version and the second screenshot is the computer version. i am sorry for the confusion. I would like to make the computer version of the picture smaller. and for some reason there is that black line on the mobile version that i do not know how to take off so if you could help me with those two things i would appreciate it Use this new code /*Desktop-Home-Image size */ @media screen and (min-width:768px) { .gallery-masonry { padding-left: 5vw !important; padding-right: 5vw !important; } } @media screen and (max-width:767px) { body.homepage .gallery-strips.gallery-strips--layout-strips { min-height: 50vh; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment