Hallo Community,
ich betreibe bei einen meiner Kunden noch eine relativ alte HTML Webseite (iwann nächtes Jahr ist dann mal Wordpress mit Theme usw. geplant)
Jedenfalls habe ich das Problem, dass wenn ich die Webseite bei meinem Mac aufrufe nicht auf den ganzen Bildschirm angezeigt bekomme sondern nur so:
So sieht der Code von der html aus
Könnt ihr mir helfen was hier noch fehlt?
Tut mir evtl leid wenn das ein Anfängerfehler ist.
Mein Hauptgebiet ist eigentlich Suchmaschinenoptimierung ;P
Grüße
Paul
ich betreibe bei einen meiner Kunden noch eine relativ alte HTML Webseite (iwann nächtes Jahr ist dann mal Wordpress mit Theme usw. geplant)
Jedenfalls habe ich das Problem, dass wenn ich die Webseite bei meinem Mac aufrufe nicht auf den ganzen Bildschirm angezeigt bekomme sondern nur so:
So sieht der Code von der html aus
Code:
<!--
function F_loadRollover(){} function F_roll(){}
//-->
</script>
<script type="text/javascript" src="../assets/jquery.js">
</script>
<script type="text/javascript" src="../assets/rollover.js">
</script>
<link rel="stylesheet" type="text/css" href="../fusion.css">
<link rel="stylesheet" type="text/css" href="../html/style.css">
<script type="text/javascript">
<!--
var hwndPopup_31c4;
function openpopup_31c4(url){
var popupWidth = 900;
var popupHeight = 900;
var popupTop = 300;
var popupLeft = 400;
var isFullScreen = false;
var isAutoCenter = true;
var popupTarget = "popupwin_31c4";
var popupParams = "toolbar=1, scrollbars=1, menubar=1, status=1, resizable=1";
if (isFullScreen) {
popupParams += ", fullscreen=1";
} else if (isAutoCenter) {
popupTop = parseInt((window.screen.height - popupHeight)/2);
popupLeft = parseInt((window.screen.width - popupWidth)/2);
}
var ua = window.navigator.userAgent;
var isMac = (ua.indexOf("Mac") > -1);
//IE 5.1 PR on OSX 10.0.x does not support relative URLs in pop-ups the way they're handled below w/ document.writeln
if (isMac && url.indexOf("http") != 0) {
url = location.href.substring(0,location.href.lastIndexOf('\/')) + "/" + url;
}
var isOpera = (ua.indexOf("Opera") > -1);
var operaVersion;
if (isOpera) {
var i = ua.indexOf("Opera");
operaVersion = parseFloat(ua.substring(i + 6, ua.indexOf(" ", i + 8)));
if (operaVersion > 7.00) {
var isAccessible = false;
eval("try { isAccessible = ( (hwndPopup_31c4 != null) && !hwndPopup_31c4.closed ); } catch(exc) { } ");
if (!isAccessible) {
hwndPopup_31c4 = null;
}
}
}
if ( (hwndPopup_31c4 == null) || hwndPopup_31c4.closed ) {
if (isOpera && (operaVersion < 7)) {
if (url.indexOf("http") != 0) {
hwndPopup_31c4 = window.open(url,popupTarget,popupParams + ((!isFullScreen) ? ", width=" + popupWidth +", height=" + popupHeight : ""));
if (!isFullScreen) {
hwndPopup_31c4.moveTo(popupLeft, popupTop);
}
hwndPopup_31c4.focus();
return;
}
}
if (!(window.navigator.appName == "Netscape" && !document.getElementById)) {
//not ns4
popupParams += ", width=" + popupWidth +", height=" + popupHeight + ", left=" + popupLeft + ", top=" + popupTop;
} else {
popupParams += ", left=" + popupLeft + ", top=" + popupTop;
}
//alert(popupParams);
hwndPopup_31c4 = window.open("",popupTarget,popupParams);
if (!isFullScreen) {
hwndPopup_31c4.resizeTo(popupWidth, popupHeight);
hwndPopup_31c4.moveTo(popupLeft, popupTop);
}
hwndPopup_31c4.focus();
with (hwndPopup_31c4.document) {
open();
write("<ht"+"ml><he"+"ad><\/he"+"ad><bo"+"dy onLoad=\"window.location.href='" + url + "'\"><\/bo"+"dy><\/ht"+"ml>");
close();
}
} else {
if (isOpera && (operaVersion > 7.00)) {
eval("try { hwndPopup_31c4.focus(); hwndPopup_31c4.location.href = url; } catch(exc) { hwndPopup_31c4 = window.open(\""+ url +"\",\"" + popupTarget +"\",\""+ popupParams + ", width=" + popupWidth +", height=" + popupHeight +"\"); } ");
} else {
hwndPopup_31c4.focus();
hwndPopup_31c4.location.href = url;
}
}
}
-->
</script>
Könnt ihr mir helfen was hier noch fehlt?
Tut mir evtl leid wenn das ein Anfängerfehler ist.
Mein Hauptgebiet ist eigentlich Suchmaschinenoptimierung ;P
Grüße
Paul