Jump to content

Andreas_D

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by Andreas_D

  1. Thank you Tom. I think the problem for me with the rubberband overscrolling is that it runs well on Mozille but not Safari or Chrom. To recognize mistakes and find solutions is just really difficult. But the forum is already great were all very helpful.
  2. Thank robin for your test. When testing on my Mac system unfortunately the errors occur.
  3. Hello for all, I have a small problem with my portfolio (Portfolio). When scrolling and sliding to the right, the content always jumps slightly. I could test it on chrome and safari. In Mozilla, however, the error does not occur. Maybe someone has a tip since I am still a beginner and does not know where the error comes. Many Thanks
  4. Hello for all, I have a small problem with my portfolio (Portfolio). When scrolling and sliding to the right, the content always jumps slightly. I could test it on chrome and safari. In Mozilla, however, the error does not occur. Maybe someone has a tip since I am still a beginner and does not know where the error comes. Many Thanks
  5. Hi, I have a small problem maybe one has a tip. I can not change the title of the page without it afterward no longer works. Many thanks for the help! The Code: ><!DOCTYPE html> <html lang="<?php echo _x('en', 'HTML language code'); ?>"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title><?php echo $title; ?></title> <meta name="description" content="<?php echo $page->summary; ?>" /> <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>scripts/owl/assets/owl.carousel.css" /> <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>styles/styles-detjen.css" /> <?php handleLanguageHeadLinks(); ?> </head> <body <?php echo 'class="parent-'. strtolower($page->parent()->title) . ' ' . strtolower($page->title) . '"' ?> <?php if ( $page->background ) { echo " style='background-image: url(\"{$page->background->url}\");background-repeat:no-repeat;background-size:cover;'"; } ?> > <header class="top-header"> <a class="logo" id="logo" href="<?php echo $pages->get("/")->url ?>">D&nbsp;/</a> <button class="menu-btn is-mobile" id="menu-btn"> <div class="menu--line"></div> <div class="menu--line"></div> <div class="menu--line"></div> </button> </header> <div class="nav-menu-container is-mobile is-desktop" id="nav-menu-container"> <nav class="navigation-menu"> <!-- top navigation --> <ul class='nav-list mobile-nav'> <li class="close">&nbsp;</li> <?php echo '<li><ul class="languages">'; $current = 0; $count = count( $languages ); foreach($languages as $language) { $additional = "notLast"; if ( $count - 1 == $current ) { $additional = ""; } $current++; if(!$page->viewable($language)) continue; // is page viewable in this language? if($language->id == $user->language->id) { echo "<li class='current {$additional}'>"; } else { echo "<li class='{$additional}'>"; } $url = $page->localUrl($language); $hreflang = $homepage->getLanguageValue($language, 'name'); echo "<a hreflang='$hreflang' href='$url'>$hreflang</a></li>"; } echo "</ul></li>"; // top navigation consists of homepage and its visible children $landingPage = $pages->get("/"); if($landingPage->id == $page->rootParent->id) { echo "<li class='current'>"; } else { echo "<li>"; } echo "<a href='$landingPage->url'>$landingPage->title</a></li>"; foreach($homepage->children as $item) { if($item->id == $page->rootParent->id) { echo "<li class='current'>"; } else { echo "<li>"; } echo "<a href='$item->url'>$item->title</a></li>"; } // output an "Edit" link if this page happens to be editable by the current user if($page->editable()) echo "<li class='edit'><a href='$page->editUrl'>" . __('Edit') . "</a></li>"; ?></ul> </nav> </div> <div id='main'> <!-- main content --> <div id='content' class='content'> <?php echo $content; ?> </div> </div> <?php if ( isset( $footer )) { ?> <div class="contact-footer-block clearFix"> <div class="small-link leftFloated"><a href="<?php echo $footer[ 'web_link' ]; ?>">imprint</a></div> <div class="small-link rightFloated"><a href="<?php echo $footer[ 'linkedin' ]; ?>">linkedin</a></div> <div class="small-link rightFloated"><a href="<?php echo $footer[ 'instagram' ]; ?>">instagram</a></div> <div class="small-link rightFloated"><a href="<?php echo $footer[ 'twitter' ]; ?>">twitter</a></div> </div> <?php } ?> <div class="scroll-cta" href="<?php echo $pages->get( 1025 )->url ?>"> <div class="c-line"></div> </div> <iframe style="height:0px;width:0px;visibility:hidden" src="about:blank"> this frame prevents back forward cache </iframe> <script src="<?php echo $config->urls->templates?>scripts/jquery-3.1.1.min.js"></script> <script src="<?php echo $config->urls->templates?>scripts/jquery-ui-1.12.1.min.js"></script> <script src="<?php echo $config->urls->templates?>scripts/jquery.touchSwipe.min.js"></script> <script src="<?php echo $config->urls->templates?>scripts/owl/owl.carousel.min.js"></script> <script src="<?php echo $config->urls->templates?>scripts/pace.min.js"></script> <!-- <script src="--><?php //echo $config->urls->templates?><!--scripts/main.js"></script>--> <script src="<?php echo $config->urls->templates?>scripts/main-online.js"></script> <?php if ( isset( $additionalScriptFile ) ) { echo "<script src='{$config->urls->templates}/scripts/$additionalScriptFile'></script>"; } ?> </body> </html>
  6. I have yet another script found maybe it helps someone.... Is this : http://ricostacruz.com/nprogress/
  7. Hey PWaddict, yes that's it . Thanks for the quick reply and for the nice welcome!
  8. Andreas_D

    Process Bar

    Hello together, I am looking for a plugin which I can preload contents. Unfortunately I have not found a plugin until now. Is there something already? I would be very grateful for any advice. As an example a picture of what I mean. greetings from Hamburg
×
×
  • Create New...