Hello Vibe Team,
We don't want to display INSTRUCTOR DETAILS and POPULAR COURSES widget from the course home page (Single course Page) on Mobile.
Actually It's hard to read the description of the course right away so we need to remove it.
Please help me to get it.
Screen shots are :-
1. http://prntscr.com/dab7bn
2. http://prntscr.com/dab7bw
3. http://prntscr.com/dab7c2
You can remove the POPULAR COURSES widget by clicking on the customise button on any single course page ->widgets->then delete that widget and save.
For instructor details
Go to wp-admin->appearance->customiser->add custom CSS-> add these lines and save.
.single-course div#item-admins {display:none !important ;}
Hello, I think you don't get my point, I want all the widget not to be displayed on mobile only, It will display on tablet and laptop and all other devices.
Go to wp-admin->appearance->customiser->add custom CSS-> add these lines and save.
@media only screen and (min-width:200px) and (max-width: 991px)
{
.footertop .col-md-3:nth-child(2)
{
display:none;
}
}