+The Gidzagubbagoos Posted February 22, 2004 Posted February 22, 2004 On one of my few TB's pages I want to have a list of places to visit like such: 1) place A 2) place B 3) place C etc. But when I do the page it doesn't put the carriage returns so it looks like this: 1) place A 2) place B 3) place C What do I need to do to get it to look nice? Do I need to put html codes in? If so, what is the html code for carriage return? Thanks in advance to all the gurus. Quote
+Theseus Posted February 22, 2004 Posted February 22, 2004 I'm far from a guru but I have done the same thing on my pages. Just insert </br> at the end of the line. Quote
+brad.32 Posted February 22, 2004 Posted February 22, 2004 The tag is <br> because the / is not needed because break is not a paired tag. ... or you could use an ordered list: <ol> <li>place A <li>place B <li>place C </ol> which will place numbers in front with periods, but not ")"s. Quote
+The Gidzagubbagoos Posted February 22, 2004 Author Posted February 22, 2004 Thank you, I'm going to go fix it now. You guys rock Quote
bbmagic Posted February 22, 2004 Posted February 22, 2004 While we're on the subject, how does one go about changing the background to an image or different color? I used to know the html command, but it escapes me at the moment! It's not <img src> is it? Cheers! bbmagic Quote
+brad.32 Posted February 23, 2004 Posted February 23, 2004 <body background="foo.jpg" ...> <body bgcolor="color" ...> "color" can be a color name ("blue") or a specification like "#0000ff" for blue, etc The body spec is normally at the beginning of the html (after the header), but it works imbedded in cache/TB pages too. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.