Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Posts posted by vchris

  1. You can always check google if there is a way of doing this but I've never done this and have tried a couple times. CSS won't allow % and you don't know how tall each page will be...That's why I always sticked with tables in those cases.

  2. It is illegal to have a <p> within a <p> tag.Code should be:

           <p class="inner">        Stuff....       </p>       <p class="inner">        More stuff....       </p>

    Or

           <div class="outerparagraph">       <p class="inner">        Stuff....       </p>       <p class="inner">        More stuff....       </p>       </div>

  3. Hey, I took a look at your code.Your function selectText() won't work the way it's written. You're trying to select a component within your form (dropmsgform) called text which by what I can see doesn't exist. All I see are divs which contain the code. I see you also have divs with different ids. What you need to do is have something like document.dropmsgform.dropmsg1.select() which should select all the text within that div. So basically depending what option is chosen in your drop down your selectText function should change the number of the dropmsg.To mod: please move into javascript forum.

  4. I just copied your code in a blank html page and it works. So I don't understand why yours wouldn't...Could you post your complete code from one <html> tag to another?

  5. I'm interested in learning XML, XSL, XSL-T, XLink, XPointer, XQuery, XSL-FO and all that wonderful xml stuff. I have read the forums but I find there is not enough info on there. Eventually I'd like to be able to use XML with a MySQL DB.Anyone know any excellent books that covers those subjects?

  6. Yeah I know it's less common but I saw 1 or 2 hosters who supported it. It was a bit more expensive than anything else. But if you're looking to learn server side scripting with ease well coldfusion is good. I didn't start with CF, I started with Java and was kinda hard at first but then got the hang of it and I understood all the rest...You can always start with php or asp and then once you know them well you'll understand all of them. It's all the same, just the syntax changes :)

  7. I watch the show judge judy sometimes and there was a case about eBay. I guy was selling a comic but the guy got ripped off. Since the customer had a copy of the ad he was able to get his money back.I bought a couple things off there and never had any issues.I checked the ad carefully for those templates and it didn't mention any extra fees or 10$/template.

  8. Hey cai,By my knowledge you cannot stretch a background image. Only way is to tile the background image and that would take all the background. Only way is to use an image editing program and change to the desired size.

×
×
  • Create New...