View Full Version : Help!!


StandardIce404
08-28-2004, 10:13 PM
:idea: ok for my site, i am trying to get the update iframe to line up w/ the tagboard... my site is http://www.geocities.com/standardice404/index.cgi any ideas?

XxBeaNxX
08-28-2004, 10:51 PM
So you want to move you're iframe over to the right above the tagboard? Try <div align="right"> before you're iframe tag.

If you want to do the opposite, and move the tagboard under the iframe (which I believe is centered), just put a <center> before the tagboard code.

You could also use absolute positioning.

StandardIce404
08-29-2004, 02:49 PM
I want it so that the iframe is on the left and the tagboard is on the right, but having them on the same line-

Chris
08-29-2004, 02:53 PM
Use DIV postitioning: www.lissaexplains.com/html7.shtml

StandardIce404
08-29-2004, 07:16 PM
oo thanks so much!

StandardIce404
08-30-2004, 02:36 AM
Ok, well it didnt work.... now it has this huge black box.. can anyone else help?

Monkey Bizzle
08-30-2004, 02:42 AM
are you sure that is the right page?? that link doesn't work so I can't look at it.

StandardIce404
08-30-2004, 02:45 AM
oo no sorry. the right page is http://www.geocites.com/standardice404

Monkey Bizzle
08-30-2004, 02:47 AM
is that blue box the update box?

StandardIce404
08-30-2004, 02:51 AM
um, no the blue box is the tag-board and the iframe is transparent. but I can't seem to get them to line up on the same line

Monkey Bizzle
08-30-2004, 02:52 AM
so, you want the thing that has the tags in it to be ontop of the blue box...

StandardIce404
08-30-2004, 02:54 AM
Yeah kinda just so there isnt that big white space between it

Monkey Bizzle
08-30-2004, 03:01 AM
well, before i even get to that part, there are some errors in your CSS... if it is wrong in this part, then it is prolly wrong in all of your frame pages...

this is what you have with my comments in red...

<style type="text/css">
A:link
{ text-decoration: overline; color:#FF3399; }
A:visited
{ text-decoration: underline; color:#FF3399; }
A:active
{ text-decoration: underline overline; color:#FF3399; }
A:hover
{ text-decoration: underline overline; color:#FF3399;
background-color: #lightpink;
^ if you are specifying a color, you can't use # and a word... get rid of the # or change "lightpink" to an actual number code...
background-image: "http://www.geocities.com/standardice404/AshleeSimpson.jpg";
^do you really want that to be the BG for your links??? cause that's the section it's in... if you meant for this to be the background for the whole page then you need to move this into the body section of your CSS
cursor: crosshair;
^ you are missing the closing } so put that at the end of the cursor code
h1 {font-family: arial; color: FF0099; }
^ and v you are missing the # in front of your color codes...
p {font-family: arial; color: FF0099; }
body
{ background: #FFFFFF;
^ that should read "background-color"
background-attachment: scroll;
^ you don't have a BG image so you don't need this code... if you meant to put the above image code as the page background then move it here and keep the above code...
font-family: arial;
color: #FF0099 ;
letter-spacing: 0.2pt;
font-weight: normal;
font-size: x-small;

scrollbar-face-color: FFFFFF;
scrollbar-highlight-color: FFFFFF;
scrollbar-3dlight-color: FFFFFF;
scrollbar-darkshadow-color: FFFFFF;
scrollbar-shadow-color: FF1493;
scrollbar-arrow-color: FF3399;
scrollbar-track-color: FFFFFF;}
^missing # in front of all of your color codes for your scrollbar... yes, i know it works without it but you should put the # code anyways so it doesn't confuse things.
input, textarea
{ background: #FFFFFF
font-family: arial;
color: #FF0099;
border-style: outset;
[border-color: #FF3399;
^ get rid of the [ in front of this code...
border-width: 3; }
^ whenever there is a measurement greater than 0, you need to specify the type. so, if you meant 3 pixles wide, then put px after the 3 with NO space...
</style>

fix that and i will try to figure out the other problem...

Monkey Bizzle
08-30-2004, 03:14 AM
okay, i guess i could have just made one post instead of two but it is too late to edit... anyways, if you want to line up your frames, then add this to one or both of them... depending on how you want to move them...

style="position: absolute; top: ##px; left: ##px;"

what that does is positions the frame where ever you want it on the page... you will have to play with the numbers until you get it exactly where you want it but this should solve your problem...

StandardIce404
08-30-2004, 01:13 PM
thanks so much! you helped alot!

Monkey Bizzle
08-30-2004, 02:32 PM
you're welcome!