Jump to content

Kosher Kid

Members
  • Posts

    71
  • Joined

  • Last visited

Kosher Kid's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. i believe you will find that the western part of russia is in europe while the easter part (past ural mountains) in in asia.they are bi-continental but have yet to come out of the closet.
  2. everyone is talking about flash, no one is talking about chocolate's idea...
  3. i'm sorry, perhaps i'm missing something...i did not see any problems with the bottom copyright line but saw some real alignment problems within the body...what issue are you trying to resolve?
  4. dan...just for the fun of it, i tested your solution...didn't work in either ff or ie.jonas link was quite cool in ie....wonder if there's a way to do it in ie?
  5. your code and scott's code didn't work because you were calling an undefined function: hide.in my first post, i simply created the hide function, then i had a bto (blind flash of the obvious) and simply called the writetext code both times, changing the parameter.
  6. you know, maybe one of these days i'll learn to think before i post. <html><head><script type="text/javascript">function writeText(txt){document.getElementById("desc").innerHTML=txt;}</script></head><body><img src="http://w3schools.invisionzone.com/style_images/w3sbanner.gif" usemap="#world_map" alt="" style="border-style:none" /><map id="world_map" name="world_map"><area shape="circle" alt="W3schools" coords="10,10,6" nohref title="India" onMouseOver="writeText('VirtualAdz')" onMouseOut="writeText('')" /><p id="desc"></p></map></body><html>
  7. scott's code called an undefined function "hide"try this: <html><head><script type="text/javascript">function writeText(txt){document.getElementById("desc").innerHTML=txt;}function hide(txt){document.getElementById("desc").innerHTML=txt;}</script></head><body><img src="http://w3schools.invisionzone.com/style_images/w3sbanner.gif" usemap="#world_map" alt="" style="border-style:none" /><map id="world_map" name="world_map"><area shape="circle" alt="W3schools" coords="10,10,6" nohref title="India" onMouseOver="writeText('VirtualAdz')" onMouseOut="hide('')" /><div id="desc"></div></map></body><html>
  8. Kosher Kid

    like operator

    thanks for the education...i have not worked with the mysql database and have only dealt with access, sql server and the like, which do use the * wildcard and require a semicolon...getting familiar with mysql is on my long list of things to do
  9. Kosher Kid

    like operator

    jojay--are you just trying to select all records from the cname field in the page1 table?if so, the correct sql is:SELECT cname FROM page1; [i agree with profdan that CAPS is the proper way to write an sql query.]if you want the entire table:SELECT * FROM page1;if you want selected cname records,SELECT * FROM page1 WHERE cname LIKE [see below]; or WHERE cname = "string";When using wildcards with the like phrase, use * rather than %:SELECT cname FROM page1 where cname LIKE "*want*"use only the * as needed...if you want something that begins with a certain string then write LIKE "joe*"....for something that ends with a certain string, write LIKE "*joe"...for something that contains a certain string, write LIKE "*joe*"also, a sql query must end in a ;
  10. not if they were hoping to patent and reap millions...
  11. ah, c'mon, guys, we can be more helpful than that...while the w3schools are terrrrrifffficccc...there's still lots more information be had out there in the big wide web...so, redstorm, i have found sitepoint to provide a wealth of free information and sample chapters from their books...another site is html goodies...and surf the web looking at sites whose design you admire and see if you can recreate it or your own variations...so, get busy googling...and, by the way, the others are quite right...if you want to get to carnegie hall: practice, practice, practice...
  12. in english, to snug is to bring things close together...snugging is the acti of doing that...snuggling is the act of doing that with someone special... this thread seems to have become a dialog although plenty of people have read it...so, come on, you wiser than wise people out there...tell us something really cool the prof can do to achieve his goal...
  13. i think i understand what you're trying to achieve...in essence, snugged up buttons/text, so that: button/text | longer button/text ------------------------------------ longer button/text | button/textis the result.since this is for personal consumption, i suppose there's no problem with trying to achieve it but i have no idea as to how you might without using containers or, in a table, colspan.but i must say that from the basis of general good design, it's not a very desirable goal.of course, english is my language so that i may be handicapped by a lack of understanding of the dutch language and dutch preferences in terms of how things are laid out.on those occasions when i'm doing something for purely personal consumption, i still try to use good fundamental design principles...it makes sure that i stay in practice and don't get sloppy, plus, in case i'm accidentally brilliant, i can release my work to others without the need to redesign.
  14. Kosher Kid

    Layout Problem

    kinda hard to tell without being able to look at the css file
×
×
  • Create New...