Hi @mikefashion31
Can you provide your site link and if possible a screenshot of the area you’re describing so that I can help accordingly?
Regards,
ThemeGrill
Hi @nidwija ,
Unfortunately our site now is on localhost.
Do you still want me to provide you a screenshot?
Thank you for your help!
Hi @nidwija,
Take a look at the following screenshot author box – comment section
We would like not to include these two sections on the beta version of our site.
So, if it is possible can you provide me with a css code that will hide those two elements with the (display:none) value, sitewide?
Thank you so much for your help!
Laura
Hi @nidwija
is everything ok?
I hope that this is something not too difficult for you.
Provide me with an css code please, so I can test the theme without the author box and the comments section.
Thank you in advance!
Hi @mikefashion31
To disable the author box, please Go to
Appearance > Customize > Theme Options > Single Post section
and disable the author box.
To disable the comment section, please Go to
Settings > Discussion
and disable the comments from your site from here.
Do let us know if it helps.
Best Regards,
Hello @rohitkc32
Thank you for answering me!
I knew about this function but I would like to hide those two elements ONLY IN MOBILE VIEW. Something like (display: none;) and @media screen and (max-width: 768px) { that I will add to the custom CSS. Is it possible please?
I am not that techy savvy but having the code I believe, will do the trick…
Take care!
Hi @mikefashion31
Please apply the following CSS and see if it helps:
@media screen and (max-width: 768px){
#comments{
display: none;
}
}
And for author box please apply the following CSS:
@media screen and (max-width: 768px){
.tg-author-box{
display: none;
}
}
Do let us know if it helps.
Best Regards,
Excellent support!
I owe guys for this…
Solved!