Thread: Simple Theme
View Single Post
  #22  
Old 19th July 2013, 05:59
Joe Joe is offline
Senior Member
 
Join Date: Apr 2010
P2P
Posts: 167
Default
Quote:
Originally Posted by firefly007 View Post
Code:
<div id='footer'>                                              
        <div class='left_footer'><a href='index.php'>home</a> <a href='faq.php'>faq</a> <a href='rules.php'>privacy policy</a><a href='mailto:chezandrei@gmail.com'>contact</a></div>
        <div class='right_footer'><a href='#'  target='_blank'><img src='http://www.bvlist.com/images/chezdesign.gif' border='0' alt='' title='' /></a>
        </div>   
    
    </div>
    
    
    
</div>
There is no need to use ' ' in the above html or though it will work. In most cases you will use ' ' when doing the following

Code:


$footer = "
<div id='footer'>
    <div class='left_footer'>
        <a href='index.php'>home</a><a href='faq.php'>faq</a><a href='rules.php'>privacy policy</a><a href='mailto:chezandrei@gmail.com'>contact</a>
    </div>
    <div class='right_footer'>
        <a href='#'  target='_blank'><img src='http://www.bvlist.com/images/chezdesign.gif' border='0' alt='' title='' /></a>
    </div>
</div>
</div>";

    
    
  
The correct format should be something like this...

Code:
<div id="footer">
    <div class="left_footer">
        <a href="index.php">Home</a><a href="faq.php">Faq</a><a href="Privacy Policy">rules</a><a href="mailto:mailto:chezandrei@gmail.com">Contact</a>
    </div>
    <div class="right_footer"><img src="http://site.ninjacentral.co.za/ban.png" width="350" height="80"  alt="Footer"/>
    </div>
</div>

But if u mix it with php you will need to use $htmlout or $HTMLOUT ? right as Thats what I use in my TBDev code ?
Reply With Quote