This post has been edited by evil160: 29 December 2010 - 01:47 PM
cant figure out how to put spaces between webpage objectsWARNING NOOB QUESTION!
Page 1 of 1
12 Replies - 956 Views - Last Post: 30 December 2010 - 07:19 PM
#1
cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 01:46 PM
Replies To: cant figure out how to put spaces between webpage objects
#2
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 01:57 PM
evil160, on 29 December 2010 - 02:46 PM, said:
What's you code for this so far? have you tried: <br /> after the object? You can use padding in CSS.
This post has been edited by EnvXOwner: 29 December 2010 - 01:58 PM
#3
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 02:09 PM
#4
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 02:51 PM
#5
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 05:30 PM
#6
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 05:33 PM
#object
{
position: absolute;
top: 50px;
right: 50px;
}
You can read more about positioning here. I hope that this helps #7
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 05:42 PM
#8
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 05:54 PM
This post has been edited by evil160: 29 December 2010 - 05:56 PM
#9
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 05:55 PM
evil160, on 29 December 2010 - 06:54 PM, said:
Ah I see. Then it's okay to use tables for that. Is the position in CSS what you're looking for?
#10
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 06:09 PM
EnvXOwner, on 29 December 2010 - 04:55 PM, said:
evil160, on 29 December 2010 - 06:54 PM, said:
Ah I see. Then it's okay to use tables for that. Is the position in CSS what you're looking for?
i know how to set the position in CSS, but i cant get two charts to be on opposite ends of a page and be on the same line as each other.
#11
Re: cant figure out how to put spaces between webpage objects
Posted 29 December 2010 - 06:22 PM
evil160, on 29 December 2010 - 07:09 PM, said:
EnvXOwner, on 29 December 2010 - 04:55 PM, said:
evil160, on 29 December 2010 - 06:54 PM, said:
Ah I see. Then it's okay to use tables for that. Is the position in CSS what you're looking for?
i know how to set the position in CSS, but i cant get two charts to be on opposite ends of a page and be on the same line as each other.
It's really hard to help if I can't see your code.
#12
Re: cant figure out how to put spaces between webpage objects
Posted 30 December 2010 - 06:20 PM
<html>
<head>
<script>
<!--
/*
Auto Refresh Page with Time script
By Javascript Kit (javascriptkit.com)
Over 200+ free scripts here!
*/
//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="0:30"
if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
window.status=curtime
setTimeout("beginrefresh()",1000)
}
}
window.onload=beginrefresh
//-->
</script>
<style type="text/css">
<!--
#Score {
text-align: center;
}
#Active_Chart_Label {
text-align: center;
font-weight: bold;
font-style: italic;
}
#Game_Stats {
font-weight: bold;
font-style: italic;
}
#test {
text-align: right;
}
-->
</style>
</head>
<body>
<p id="Score">Frontenac: 0 Visitor: 0 </p>
<p id="Game_Stats"> Game Stats</p>
<table width="238" border="3" cellpadding="1" cellspacing="5">
<tr>
<th width="32" scope="row"> </th>
<td width="85">Frontenac</td>
<td width="83">Visitor</td>
</tr>
<tr>
<th scope="row">Serves</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th scope="row">Passes</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th scope="row">Spikes</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th scope="row">Outs</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th scope="row">Blocks</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th scope="row">Digs</th>
<td>0</td>
<td>0</td>
</tr>
</table>
<p id="Active_Chart_Label"> Frontenac Players </p>
<table width="549" border="3" align="center" cellpadding="1" cellspacing="5" id="player table">
<tr>
<th width="58" scope="row">Position:</th>
<td width="56">Opposite</td>
<td width="45">Outide Hitter</td>
<td width="92">Middle Blocker/Libero</td>
<td width="36">Setter</td>
<td width="61">Right Side Hitter</td>
<td width="59">Middle Blocker</td>
</tr>
<tr>
<th scope="row">Player:</th>
<td> </td>
<td> </td>
<td> </td>
<td id="Player Table"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
#13
Re: cant figure out how to put spaces between webpage objects
Posted 30 December 2010 - 07:19 PM
|
|

New Topic/Question
Reply



MultiQuote




|