Page 3 of 3

Re: Sliding navigation tutorial

Posted: Thu Nov 15, 2018 5:06 am
by olape
Tata wrote:
Wed Nov 14, 2018 9:15 pm
Hopefully fixed now.
+1

Re: Sliding navigation tutorial

Posted: Thu Nov 15, 2018 12:03 pm
by lck
Es gibt da schon noch ein Problem. Nachvollziehbar mit den Browsertools, Bildschirmgrößen testen (Beispiel iPad).
slidenav-issue.jpg
Das rechte Menü floatet über den Content-Bereich hinaus (getestet mit Chrome), bedingt durch position: absolute. Mehr Infos hierzu siehe z.B. hier.

QuickFix - den gesamten Content-Bereich in ein div fassen (.content-container) und relativ positionieren mit overflow-x: hidden
template.htm

Code: Select all

<body id="body" onload="">

<div class="content-container"> <!-- NEU -->
<div class="navigation-container">
...
...
...
</div>

</body>
stylesheet.css ergänzen

Code: Select all

.content-container {
	overflow-x: hidden;
	position: relative;
}

Re: Sliding navigation tutorial

Posted: Thu Nov 15, 2018 1:17 pm
by Tata
Danke. Gefixt.