Osclass forums
Support forums => General help => Topic started by: moinuddin on July 03, 2019, 11:58:04 am
-
Hi,
I went to theme settings from admin and entered the html codes for ad banner ..but its not displayed on mobile and only displayed on desktop.should i change the size of banner?.can anyone help?
Thanks in advance .
-
I don t know bender theme but I think you have to modify css file
May be css hide element to small devices.
In this case you must use media queries.
Regards
-
Hi,
I went to theme settings from admin and entered the html codes for ad banner ..but its not displayed on mobile and only displayed on desktop.should i change the size of banner?.can anyone help?
Thanks in advance .
Let me see the code you are using and the location on your site the banner has to be placed. I will give it a go and get back to you.
Regards
-
Taking a quick look at Bender CSS, I saw this rules:
@media only screen and (max-width: 740px) {
#header .ads_header, .ads_300, .ads_728, .ads_468 {
display: none;
}
}
You need to change display: none; to display: block;.
Regards.