Hi, related whit this topic: https://forum.tagdiv.com/topic/hide-authors-box-of-a-certain-author/
¿How can I hide the same author’s box in mobile? I’m using mobile theme.
No, this don’t work.
I also tried with the last author box, because I hide the admin author’s box with:
.author-box-wrap.AdminName{
display:none;
}
and now with
@media (max-width:767px){
.author-box-wrap.AdminName{
display:none!important;
}
}
It does not work either.
I still see the admin author box in mobile.
Hi, for example this page: http://chilecientifico.cl/chilecientifico/2017/04/12/videos/
in mobile view, I can see admin box at below.
This don’t show in desktop, because I have the specific style:
.author-box-wrap.Maricel7{
display:none;
}
But I can see it in mobile, look a sample here (I can’t send a url of a mobile view): http://chilecientifico.cl/chilecientifico/mobile-view.jpg
Hello Sebastian Escobar,
Do you want to show the author box in mobile mode? Try to use the code below and place it in Theme panel
-> Custom CSS area.
The code is ->
@media(max-width:767px){
.author-box-wrap.Maricel7{
display:block!important;
}
}
If is not what you mean, provide more details.
Thanks for the message!
No, no
This is the same style I wrote above.
I don’t want to show the administrator box on the mobile.
So I took the same CSS that you sent me and I put display: none; instead of display:block!important;
But it’s still showing in mobile, and I want to hide it.
Thanks!
Hi,
The author box does not display on the post that you have provided, on desktop
– https://www.screencast.com/t/jSuRuDkA6
Or on mobile – https://www.screencast.com/t/UItjuUeSia
The code that you entered is working properly, I do not see the author box present. Maybe you just needed to clear your cache if the code was not applying.
Thanks