Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1

    Default Html code question.


    What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a href="http://www.carinsurancequotesinformation.com&quot;>car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.


    Someone told me use DIV tags but how do i put this in HTML code?.

  2. #2
    Quote Originally Posted by Gh0st1234 View Post
    What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a onclick="_gaq.push(['_trackEvent', 'Outgoing', 'www.carinsurancequotesinformation.com"', '']);" rel="nofollow" href="http://www.carinsurancequotesinformation.com">car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.


    Someone told me use DIV tags but how do i put this in HTML code?.
    send me ur codes to mrtuthaus@gmail.com

  3. #3
    Quote Originally Posted by Gh0st1234 View Post
    What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a onclick="_gaq.push(['_trackEvent', 'Outgoing', 'www.carinsurancequotesinformation.com"', '']);" rel="nofollow" href="http://www.carinsurancequotesinformation.com">car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.


    Someone told me use DIV tags but how do i put this in HTML code?.

    Try to use this tool HTML EDITOR

  4. #4
    Quote Originally Posted by Gh0st1234 View Post
    What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a onclick="_gaq.push(['_trackEvent', 'Outgoing', 'www.carinsurancequotesinformation.com"', '']);" rel="nofollow" href="http://www.carinsurancequotesinformation.com">car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.


    Someone told me use DIV tags but how do i put this in HTML code?.
    to fully implement this kind of boxes, you need to have a understanding of CSS.

  5. #5
    in your div gamiti ug class so
    <div class="boxes">
    1
    </div>
    <div class="boxes">
    2
    </div>

    then sa css gamiti ug float:left na rule so
    .boxes{
    float:left;
    }

    then iadjust nalang ang margins, width, and paddings as you see fit

  6. #6
    ug gusto kag Notification Box..here is the css and html code..

    CSS:
    Code:
    .tip {
    text-decoration: blink;
    background: #FFC url(https://lh5.googleusercontent.com/-sRX_pcKj5V0/UK8LgCVZanI/
    AAAAAAAAG84/-Pst-ZgY36k/s32/notification.png) center no-repeat;
    margin: 0 auto;
    width: 90%;
    display: block;
    border: 1px solid #D5B900;
    background-position: 7px 50%;
    padding: 10px 10px 10px 45px;
    vertical-align: text-top !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    }
    .tip:hover{
     box-shadow: 0 0 5px 2px rgba(0,0,0,.35);
    }

    HTML CODE:
    HTML Code:
    <div class="tip"><blink>Note:- </blink>YOUR TEXT HERE</div>

    View the full tut here:
    HTML Code:
    http://bloggers-hero.blogspot.com/2012/11/notification-box-for-blogger.html

  7. #7
    gamit kag div tags sir then set class

    then do the floating of div boxes via css..

    d man nko ma.open imo gi.hatag na site

    sample effect: ingon ani ?
    Last edited by cjmagowan; 01-10-2013 at 05:56 AM.

  8. #8
    Try no bro oh, 2-4columns...
    Code:
    <html>
    
    <head>
    
    <style>
    
    body
    {
    	margin:0px;
    	font:14px Georgia, "Times New Roman", Times, serif;
    }
    
    div.two-columns-boxes
    {
    	width:50%;
    	float:left;
    }
    
    div.three-columns-boxes
    {
    	width:33.33%;/*Working both ff & chrome*/
    	float:left;
    }
    
    div.four-columns-boxes
    {
    	width:25%;
    	float:left;
    }
    
    .style999
    {
    	background:#f0f0f0;
    }
    
    .style888
    {
    	background:#ccc;
    }
    
    .style777
    {
    	background:#999;
    }
    
    .style666
    {
    	background:#888;
    }
    
    .clr
    {
    	clear:both;
    }
    
    </style>
    
    </head>
    
    <body>
    	
    	<div class="clr"></div>
    	<div class="two-columns-boxes style999">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="two-columns-boxes style888">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="clr"></div>
        
    	<div class="three-columns-boxes style777">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="three-columns-boxes style666">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="three-columns-boxes style999">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="clr"></div>
        
    	<div class="four-columns-boxes style888">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="four-columns-boxes style777">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="four-columns-boxes style666">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="four-columns-boxes style999">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eu felis augue, sit amet consectetur orci. </div>
    	<div class="clr"></div>
    
    </body>
    
    </html>

  9. #9
    What do you mean?
    If you know about div tag you can use it. i.e

    color:black IS font color;

    <div style="height : 400px; weight:700px; background-color:red; color:black" >
    now you can write any content here even full div code also.
    </div>
    <div style="height : 400px; weight:700px; background-color:red; color:black" >
    now you can write any content here even full div code also.
    NOW DIV UNDER DIV(CHILD DIV)
    <div style="height : 400px; weight:700px; background-color:red; color:black" >
    now you can write any content here even full div code also.
    </div>
    </div>


    absolutetoner.com

  10. #10
    Try daw this
    <div id=”container”>

    <div style="clear:both"></div>
    <div id=”left”>
    For the left box
    </div>
    <div id=”right”>
    For the right box
    </div>
    <div style="clear:both"></div>

    </div> (End of container, do not include this line)

    ----------To you CSS file------------
    #container{
    Width:auto;
    Height:auto;
    }
    #left{
    Width:50px;
    Height:50px;
    Float:left;
    }
    #right{
    Width:50px;
    Height:50px;
    Float:right;

    }

  11.    Advertisement

Page 1 of 2 12 LastLast

Similar Threads

 
  1. HTML code is off-you cannot post attachments. Why is this?
    By ghostrider in forum Support Center
    Replies: 9
    Last Post: 01-23-2011, 09:18 PM
  2. HTML Code (Redirecting)
    By Deathnote in forum Programming
    Replies: 15
    Last Post: 02-28-2010, 11:36 PM
  3. Html code
    By K0n0ha in forum Programming
    Replies: 1
    Last Post: 11-19-2008, 08:14 AM
  4. just click the html code
    By mediatrix33 in forum Websites & Multimedia
    Replies: 9
    Last Post: 10-08-2008, 01:01 AM
  5. html Code formatter
    By silent-kill in forum Programming
    Replies: 7
    Last Post: 03-12-2008, 07:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
about us
We are the first Cebu Online Media.

iSTORYA.NET is Cebu's Biggest, Southern Philippines' Most Active, and the Philippines' Strongest Online Community!
follow us
#top