Results 1 to 4 of 4

Thread: show in line 3 java's

  1. #1
    Join Date
    Aug 2009
    Posts
    399
    Thanks
    42
    Thanked 4 Times in 4 Posts

    Default show in line 3 java's

    Hi,

    I have 3 javascripts:

    PHP Code:
    <script language=javascript src='http://www.120x60.lt/serve.php?12568,2,1'></script><a target=_blank  href='http://www.120x60.lt/refer.php?12843'><font color='yellow'><b>120x60.lt</b></font></a>

    <script language=javascript src='http://www.120x60.lt/serve.php?12568,2,1'></script><a target=_blank  href='http://www.120x60.lt/refer.php?12843'><font color='yellow'><b>120x60.lt</b></font></a>

    <script language=javascript src='http://www.120x60.lt/serve.php?12568,2,1'></script><a target=_blank  href='http://www.120x60.lt/refer.php?12843'><font color='yellow'><b>120x60.lt</b></font></a> 

    I want to write them in one line, but they automatically gets <br/> and the output is in 3 lines. How this can be done via css??

  2. #2
    Join Date
    Aug 2009
    Posts
    399
    Thanks
    42
    Thanked 4 Times in 4 Posts

    Default

    it is even possible? because there are 3 script tags

  3. #3
    Join Date
    Sep 2008
    Location
    Seattle, WA
    Posts
    135
    Thanks
    1
    Thanked 11 Times in 11 Posts

    Default

    You need to put each one into a container div then put the 3 divs into one container. Like this

    Code:
    <div id="container">
      <div id="scriptholder">Put script tag in here</div>
      <div id="scriptholder">Put script tag in here</div>
      <div id="scriptholder">Put script tag in here</div>
    </div>
    with the CSS something like:

    Code:
    #container {
    width: 400px;
    height: 60px;
    }
    
    #scriptholder {
    float: left;
    width: 120px;
    margin-left: 10px;
    }
    That should line them up left to right.

  4. The Following User Says Thank You to simcomedia For This Useful Post:

    auriaks (02-28-2010)

  5. #4
    Join Date
    Aug 2009
    Posts
    399
    Thanks
    42
    Thanked 4 Times in 4 Posts

    Default

    thanks, working well

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •