Browse Source

Fix minimum width

pull/2/merge
falkTX 7 years ago
parent
commit
576e278340
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      News/themes/stardust/layouts/default.twig
  2. +1
    -1
      css/style.css
  3. +1
    -1
      includes/header.php

+ 1
- 1
News/themes/stardust/layouts/default.twig View File

@@ -65,7 +65,7 @@ ${ trigger.call("head") }

</script>
</head>
<body class="mediawiki ltr ns-0 ns-subject skin-bentofluid" style="min-width:1125px" onClick="return bodyClicked();">
<body class="mediawiki ltr ns-0 ns-subject skin-bentofluid" onClick="return bodyClicked();">
<!-- Software sub menu -->
<div id="div_menuSoftware" class="div_menuDropdown">
<p><a href="/Applications"><img src="/images/ico_cadence.png" alt=""/> &nbsp; Applications</a></p>


+ 1
- 1
css/style.css View File

@@ -1,6 +1,6 @@
body {
color: #000000;
min-width: 1000px;
min-width: 1160px;
}

#header ul#global-navigation {


+ 1
- 1
includes/header.php View File

@@ -161,7 +161,7 @@ if ($PAGE_TYPE != "PASTE" && $PAGE_TYPE != "DONATIONS" && $PAGE_TYPE != "NAMESPA
<?php } ?>
</head>

<body class="mediawiki ltr ns-0 ns-subject skin-bentofluid" style="min-width:1125px" onClick="return bodyClicked();">
<body class="mediawiki ltr ns-0 ns-subject skin-bentofluid" onClick="return bodyClicked();">
<!-- Software sub menu -->
<div id="div_menuSoftware" class="div_menuDropdown">
<p><a href="<?php echo $ROOT; ?>/Applications"><img src="<?php echo $ROOT; ?>/images/ico_cadence.png" alt=""/> &nbsp; Applications</a></p>


Loading…
Cancel
Save