Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 04-20-2003, 04:55 PM   #1 (permalink)
Banned
 
Location: Meahssahcheusetss
HTML help

HELP! Well, I know a little bit of HTML i suppose. I've got a little booklet so i know the basics and a little more advanced stuff. I need help creating a little Navigation sidebar thing for my webpage, I tried using the </FRAME> tag as a suggestion from someone else but it didnt work to well. anyone give me a hand please?
Evan is offline  
Old 04-20-2003, 05:14 PM   #2 (permalink)
Squid hat!
 
meanSpleen's Avatar
 
Location: A Few Miles Away From Halx
Give us a link to what you are working on, or a site that has what you want. That way we can see what is going on.

Second, you are asking for a sidebar, do you want tables or frames? Tables will reload each time you click a link. Frames will allow the links to stay put. For the most part, people prefer tables over frames.
meanSpleen is offline  
Old 04-20-2003, 05:36 PM   #3 (permalink)
Banned
 
Location: Meahssahcheusetss
well i havent put any of the stuff into it yet, Im on advanced angelfire making.

http://www.angelfire.com/indie/darkasnight/index.html
is the main page

and

http://www.angelfire.com/indie/darkasnight/dpmb.html
is where im thinking of putting it.

as far as tables and frames, i dont think it matters as long as its a navigational bar such as the one on this page

http://www.spartansdbc.org

i want it like those bars on the side....
Evan is offline  
Old 04-20-2003, 06:23 PM   #4 (permalink)
Upright
 
That example page you posted uses frames... the only real difference with that vs tables is that with frames, part of the page can scroll independently.

With tables:
Code:
Title Up Here
<.table>
   <.tr>
      <.td>
         <.a href="link.html">Nav Link<./a><br />
         <.a href="link.html">Nav Link<./a><br />
         <.a href="link.html">Nav Link<./a>
      <./td>
      <.td>
         And you put all the page content over here.
      <./td>
   <./tr>
<./table>
With frames:

You have one file that defines the frames:
Code:
<.frameset rows="150,*" framespacing="0" border="0" frameborder="0">
   <.frame name="title" scrolling="no" noresize src="title.html">
   <.frameset cols="150,*">
      <.frame name="navbar" target="main" src="navbar.html" scrolling="auto">
      <.frame name="main" src="main.html" target="main"  scrolling="auto">
   <./frameset>
<./frameset>
title.html:
Code:
Title Up Here
navbar.html:
Code:
<.a href="link.html">Nav Link<./a><.br />
<.a href="link.html">Nav Link<./a><.br />
<.a href="link.html">Nav Link<./a>
main.html:
Code:
And you put all the page content over here.
Of course, you would delete all the periods that I put in the code. (They're just there because the forum is not rendering html as text)

Last edited by fox128; 04-20-2003 at 06:37 PM..
fox128 is offline  
Old 04-20-2003, 06:30 PM   #5 (permalink)
Banned
 
Location: Meahssahcheusetss
yeah, i just have no idea how to use it, im trying to put in like buttons instead of link text and the side just doesnt come up. using the frame tag. still lost though
Evan is offline  
Old 04-20-2003, 06:41 PM   #6 (permalink)
Upright
 
Heh, seems that I misread your post

The buttons on that page were made with java (which is probably going to be way over your head if you want to learn it) but you could do the same thing with javascript or flash. For some javascript code, check out this site, they've got lots of examples: http://www.dynamicdrive.com/dynamicindex1/index.html
fox128 is offline  
Old 04-20-2003, 07:53 PM   #7 (permalink)
Psycho
 
<i>fox128</i> you da man! (or manette, depends, just don't want to piss any person off.) You type the code like it was second nature.

Uhh, OK, I guess I am the only person here that found that impressive.

No jokes here, you know the stuff I come here to learn.

Thanks for the link also.

Last edited by poof; 04-20-2003 at 07:57 PM..
poof is offline  
Old 04-20-2003, 08:47 PM   #8 (permalink)
Insane
 
Start with joe..

http://junior.apk.net/~jbarta/tutor/...e/special.html

And use these two to give yourself the finishing touch!

http://www.htmlgoodies.com/

http://www.pagetutor.com/

If your thirst is still not quenched, do a google for tutorials. There are thousands and also some very specific which share codes.
__________________
Make me Mad.
Make me Sad.
Make me feel Alright.
oane is offline  
Old 04-20-2003, 09:28 PM   #9 (permalink)
Upright
 
Thanks poof and yeah, its man.
fox128 is offline  
Old 04-20-2003, 10:06 PM   #10 (permalink)
Insane
 
[edit]
and of course all this is pretty much exactly what fox128 mentioned above. so nevermind me and my absent mindedness

Last edited by sandeep; 03-30-2007 at 09:40 PM..
sandeep is offline  
Old 04-21-2003, 11:24 AM   #11 (permalink)
Banned
 
Location: Meahssahcheusetss
Quote:
Originally posted by poof
<i>fox128</i> you da man! (or manette, depends, just don't want to piss any person off.) You type the code like it was second nature.

Uhh, OK, I guess I am the only person here that found that impressive.

No jokes here, you know the stuff I come here to learn.

Thanks for the link also.
Yeah I was impressed too. Sucks being a novice... feel so dumb.
Thanks alot for the great stuff, hopefully i wont be so retarded when it comes to programming in the future....
Evan is offline  
Old 05-08-2003, 06:47 PM   #12 (permalink)
Upright
 
If you don't mind spending a little money, I would recommed buying Web Design In A Nutshell. <a href="http://half.ebay.com/cat/buy/prod.cgi?cpid=3445055&meta_id=1">Here</a>
is a link to the book on half.com where you can get it for around $6 after shipping. This book is not, however a tutorial. It is jjust a very good reference. Something that helps me (may not work for you, everyone learns differently) is to go to a page where I like the layout, right click it and choose view source (this is for most browsers) or you can download the page (usually File.. save as..) and open the html file in a text editor instead of a browser. You can look at the parts of the code you do not know and then look them up in the book to find out what they do and what the avalible settings are. Also, if you download them, you can change settings one at a time and the view the page in a browser to see what changed. Also, if you want a menu on your page, look at <a href="http://www.bluerobot.com/web/layouts/">BlueRobot.com</a>
They have some cascading style sheets (css) that you can use for free and tweak to make them look like you want. Once again, CSS is a little more advanced than basic HTML, but it is not too difficult and is covered in the book I recommended. Hope the helps and good luck on the page.
w00tn00b is offline  
 

Tags
html

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 10:02 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360