Archaius
03-22-2003, 02:35 PM
does anyone know the code for this? cause i want to save space on one of the pages on my site... but i dont know the html for it..
can anyone help me?
can anyone help me?
|
View Full Version : tables with scroll bars Archaius 03-22-2003, 02:35 PM does anyone know the code for this? cause i want to save space on one of the pages on my site... but i dont know the html for it.. can anyone help me? Redkaven 03-22-2003, 02:46 PM I'm no expert so I'm really not sure what you mean. I normally use an Iframe in my table cell. You might want to look into that. -Redkaven EDIT: http://www.lissaexplains.com/frames.shtml There ya go, scroll down to the Iframes section part. -Redkaven Sheila 03-22-2003, 03:13 PM Or you could use a DIV: http://www.``````````````/divtutorial.shtml Archaius 03-22-2003, 05:48 PM ok, instead of trying to explain it.. heres an example of what i want. http://home.neopets.com/templates/homepage.phtml?pet_name=Luarini i want the code for the box that this person has put all the information and stuff in.. to save space. help?? :( Sheila 03-22-2003, 05:51 PM That person is using a Div. Originally posted by Sheila Or you could use a DIV: http://www.``````````````/divtutorial.shtml Archaius 03-23-2003, 10:09 PM ok.. thank you luckies4me 03-24-2003, 05:22 PM Sheila, the link you posted that has the tutorial, where the heck do you add the other tags, like the scrollbar colors etc. ? It doesn't say where to inset them. I too need help but am not as smart as all you all, yes I have searched but I don't understand what any of it means so.... What I want is this: a section on the left sort of like a left frame, but not thick, only thick enough to include my site map, I want the second middle part a little bit bigger because that is where I want to add my site introduction, and then I want a third section on the right, think again, so that I can add some stupid HTML thingies in it. Do you understand? :) I hope that is clear enough. Celeris 03-24-2003, 08:28 PM You add scrollbar properties in the style="" section after the absolute positioning. Remember, properties are always divided by ;. For example: <div style="position: absolute; top: 0px; left: 0px; width: 300px; scrollbar-arrow-color: #bdbdbd; scrollbar-base-color: #969696; scrollbar-dark-shadow-color: #969696; scrollbar-highlight-color: #bdbdbd; scrollbar-track-color: #969696;"> luckies4me 03-24-2003, 08:38 PM Can you go to my site and tell me why my font is so big? I can't seem to find where the problem is or how to fix it, thanks! http://www.geocities.com/luckies4me//Practice2.html Celeris 03-25-2003, 12:04 AM Change your CSS to this: <style type="text/css"> <!-- A:link { text-decoration: none } body, td { background-color: #33ccff; font-family:verdana; color: #0033ff ; font-size: x-small; scrollbar-face-color : #33ccff; scrollbar-highlight-color : #33ccff; scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000; scrollbar-darkshadow-color : #000000; scrollbar-track-color : #33ccff; scrollbar-arrow-color : #000000 } --> </style> That way the text applies to the table tags too, because they always have differently sized values. Of course there still may be color issues, if so post again and I'll split it for you. luckies4me 03-25-2003, 12:13 AM I don't know what I would do without this site and your help lol...I am going crazy enough as it is lol. Well that fixed the font but ya, the color is now in the tables. Is there a way to get the right table smaller...it is set to 15 but as soon as I added the tag board it made the part bigger. Yes I am an idiot! Also what can I do to get the information to start from the top of the table section instead of centering it...as you can see in the right part it doesn't start at top. Thanks!!!! :D starlet 03-25-2003, 12:21 AM If the tagboard is bigger than 15 (which i assume it is) it will stretch the table. To make something start at the top add valign="top" to the <td> tag. luckies4me 03-25-2003, 01:02 AM Thank you! Is there any way to shrink the tagboard or no? Also what about the color? |