Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Programming Q&A
Box Side-by-Side
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="GarettM" data-source="post: 252852" data-attributes="member: 839"><p>Change your HTML Markup for starters :/</p><p>try Something like this</p><p>[HTML]<!DOCTYPE html></p><p><html></p><p></p><p> <head></p><p> <meta charset="utf-8"></p><p> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></p><p> <title>Markup Example</title></p><p> <meta name="description" content="Site Description"></p><p> <link rel="stylesheet" href="main.css"></p><p> </head></p><p> <body></p><p> <div id="wrapper"></p><p> <div id="header"></p><p> <div id="logo"></div></p><p> </p><p> <ul id="menu"></p><p> <li class="item"><a href='#'>Home</a></li></p><p> <li class="item"><a href='#'>Shop</a></li></p><p> <li class="item brand"></p><p> <a href="#"></p><p> <img src="img/logo-small.png" style="border:0" /></p><p> </a></p><p> </li></p><p> </ul></p><p> </div></p><p> <div id="container"></p><p> <div class="advirtisement"><!-- blank.fw.png --></div></p><p> <div id="news"></p><p> <?php echo $siteName(); ?></p><p> <ul class="news_container"></p><p> Float Right width 65%; ?</p><p> <?php</p><p> echo $site->getNews();</p><p> ?></p><p> </ul></p><p> </div></p><p> <aside class="sidebar"></p><p> Float To Right 25%; ?</p><p> </aside></p><p> </div></p><p> <footer class="footer"></p><p> <p>Copyright &copy; 2013 SiteName;</p></p><p> </footer></p><p> </div></p><p> </body></p><p></html>[/HTML]</p></blockquote><p></p>
[QUOTE="GarettM, post: 252852, member: 839"] Change your HTML Markup for starters :/ try Something like this [HTML]<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Markup Example</title> <meta name="description" content="Site Description"> <link rel="stylesheet" href="main.css"> </head> <body> <div id="wrapper"> <div id="header"> <div id="logo"></div> <ul id="menu"> <li class="item"><a href='#'>Home</a></li> <li class="item"><a href='#'>Shop</a></li> <li class="item brand"> <a href="#"> <img src="img/logo-small.png" style="border:0" /> </a> </li> </ul> </div> <div id="container"> <div class="advirtisement"><!-- blank.fw.png --></div> <div id="news"> <?php echo $siteName(); ?> <ul class="news_container"> Float Right width 65%; ? <?php echo $site->getNews(); ?> </ul> </div> <aside class="sidebar"> Float To Right 25%; ? </aside> </div> <footer class="footer"> <p>Copyright © 2013 SiteName;</p> </footer> </div> </body> </html>[/HTML] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Programming Q&A
Box Side-by-Side
Top