• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Znote AAC] Amiroslo Bootstrap layout!

And why can't i use icons for blocks?
Example:
Code:
<i class="icon-user icon-white"></i>

And dont show the icon...
-------------------------------------------------------------------
SOLVED!!
 
Last edited:
And why can't i use icons for blocks?
Example:
Code:
<i class="icon-user icon-white"></i>

And dont show the icon...
-------------------------------------------------------------------
SOLVED!!


Can you tell us what you did ! i really need help with that right now :D
 
So good!
Downloaded and appreciated!

I'm working on my edited version. Look?
fD3oPPO.jpg
 
Sorry, wrong? How to delete posts?
THIS is footer.

Code:
<?php
    $time = microtime();
    $time = explode(' ', $time);
    $time = $time[1] + $time[0];
    $start = $time;
?>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">

  <head>
    <title>Royal Empire - OpenTibi
            </div>
            <div class="fluid"></div>
          </div>

          <?php include 'layout/menuRight.php'; ?>
          <!-- end of middle stuff -->

        </div>
      </div>

      <!-- Footer <div class="well well-small"> -->
      <div class="footer">
        <p></p>
        <div style="text-align: center; ">
          <font face="Tahoma, Calibri, Verdana, Geneva, sans-serif ">
              &copy; <?php echo $config['site_title'];?>. Design: <a href="http://otland.net/members/amiroslo/" target="_BLANK">Amiroslo</a>. Engine: <a href="credits.php">Znote AAC</a><br>
<?php
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$finish = $time;
$total_time = round(($finish - $start), 4);
echo 'Server date and clock is: '. date($config['date'],time()) .' Page generated in '. $total_time .' seconds.';
?>
          </font>
        </div>
        <p></p>
        <p></p>
      </div>
    </div>

    <!-- Footer styling etc -->
    <style type="text/css">
    li.dropdown ul.dropdown-menu {
     display: none;
     top: 38px;
    }
    li.dropdown:hover ul.dropdown-menu,
    ul.dropdown-menu:hover {
     display: block;
    }
    </style>
    <!-- Dropdown box javascript logic -->
    <script type="text/javascript">
      // Function by Christopher
      function getFileName() {
       var url = document.location.href;
       url = url.substring(0, (url.indexOf("#") == -1) ? url.length : url.indexOf("#"));
       url = url.substring(0, (url.indexOf("?") == -1) ? url.length : url.indexOf("?"));
       url = url.substring(url.lastIndexOf("/") + 1, url.length);
       return url;
      }
      $('.nav li a[href*="' + getFileName() + '"]').addClass('active');
      $('.nav li a').on('click', function() {
       $('.nav li a.active').removeClass('active');
       $(this).addClass('active');
      });

      // Znote coded
      var myString = location.pathname.substring(1);  
      var pathArr = myString.split("/");
      var page = pathArr[1];
      var current;
      //console.log(myString, pathArr, page);
      $("ul.nav li").each(function() {
        current = $(this).find("a").attr("href");
        if (typeof current != 'undefined') {
          if (page == current) {
            current = $(this);
            current.attr('class', 'active');
          }
        }
      });
    </script>

  </body>
</html>
 
How would i go about centering the top text? i added <center> tags and tried <div style="text-align: center; "> but no luck :'(

Also @nailanb13 That looks really nice.. you should post it lol
 
Last edited:
Really cool layout, but I found a problem:
"Top 5 players" is showing GOD characters too
 
Back
Top