Toggle navigation
Webriti Support Forum
Categories
Discussions
Activity
Sign In
Home
›
WordPress Premium Themes
›
Busiprof
spacing in pages (mobile)
digital wizards
August 2018
in
Busiprof
Hi,
Is there a was to have less spacing on mobile? (see attachment)
image.png
290K
Comments
imraz
August 2018
Hi,
@digital
wizards
Copy and paste the below custom CSS in your theme's
custom CSS box
:
/*page content*/
@media
(max-width: 767px){
.page-content {
padding: 30px 0 60px;
}}
/*page content*/
Let me know did it work!
digital wizards
August 2018
Hi Imraz,
Nope, did not work.
imraz
August 2018
edited August 2018
Try this one:
/*page content*/
@media
(max-width: 767px){
.page-content {
padding: 30px 0 60px !important;
}}
/*page content*/
*Decrease the value of 30 to decrease the gap more
digital wizards
August 2018
Hi Imraz, great this worked.
Is it also possible to decrease it for desktop and tablet?
imraz
August 2018
For desktop/tablet:
/*page content*/
.page-content {
padding: 34px 0 60px;
}
/*page content*/
Reduce the value 34 to reduce the gap more
Let me know did it work!
digital wizards
August 2018
thanks this worked!
imraz
August 2018
Glad to help you!
You can rate us With your kind review
Here
Thanks for contacting us
:)
This discussion has been closed.
Comments
Is it also possible to decrease it for desktop and tablet?