Quote:
Check ss am sure it will explain the problem. Also make the forum the landing page not the cms would be better
|
Thanks, that is strange though because mobile devices should be getting the mobile theme. I do have to fix that though for sure.
#Question - Did you choose desktop mode or did you end up with the default theme automatically?
Thanks for letting me know about that because I overlooked it for sure.
Those banners were just placed in the forum with out css. I will add some inline though and use auto height and width. That should fix the issue.
--------------- Added 03 Mar 2014 at 22:47 ---------------
Probably not the cleanest way to do it but I just added width="100%" height="100%" for now.
When you have a sec Force can you take a look again on that Ipad?
Thanks
## The only banners I am having a problem with getting them to shrink down is the rotating ones that are being rotated with javascript. I can get only one image to resize. I have no idea how to add css to this except adding to img src but this breaks the active refresh when I add it to the top image.
PHP Code:
<div align="center">
<script type="text/javascript">
var imgs1 = new Array("http://**********************.jpg","http://********************.jpg");
var lnks1 = new Array("http://www.********************","http://www.*************");
var alt1 = new Array("*****","***");
var currentAd1 = 0;
var imgCt1 = 2;
function cycle1() {
if (currentAd1 == imgCt1) {
currentAd1 = 0;
}
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('adLink1');
banner1.src=imgs1[currentAd1]
banner1.alt=alt1[currentAd1]
document.getElementById('adLink1').href=lnks1[currentAd1]
currentAd1++;
}
window.setInterval("cycle1()",4000);
</script>
<a href=""http://www.*********.com"" id="adLink1" target="_blank">
<img src="http://********************.jpg" id="adBanner1" border="0" width="auto" height="auto"></a>
</div>
##-I have the javascript working to resize now--I still need to work on the header css a bit more and then should be set..