Recent content by html

  1. H

    Does anyone has experienced with US Mortgage Advocates Inc in culver city? Is it a...

    ...real business or scam? They break their contract.
  2. H

    html with <pre> tag and line spacing?

    I'm trying to work with html and the <pre> tag. However, when I use the <pre> tag, the spacing for that cell of the table gets messed up and the contents of the cell shift to the top of the table. Can someone let me know how to use the <pre> tag and make sure the contents of the cell are...
  3. H

    HTML, JAVASCRIPT and Show/Hide?

    I'm creating some show/hide things with html and javascript and I need some help since I don't know anything about javascript. I found this online: <head> <script type="text/javascript"> function showHide(ID){ itemStyle = document.getElementById(ID).style; itemStyle.display =...
  4. H

    html css tooltips with Internet Explorer V.7?

    I have created html + css tooltips. Something like this: a.info { border-bottom: 1px dashed brown; color:#009900; text-decoration: none; font-weight:bold; } a.info span { display: none; } a.info:hover { position: relative; } a.info:hover span { display: block; position: absolute; top: 15px...
  5. H

    html css tooltips with Internet Explorer V.7?

    I have created html + css tooltips. Something like this: a.info { border-bottom: 1px dashed brown; color:#009900; text-decoration: none; font-weight:bold; } a.info span { display: none; } a.info:hover { position: relative; } a.info:hover span { display: block; position: absolute; top: 15px...
  6. H

    Using html and "title" attribute I created a tooltip (popup). How can I change the...

    ...text size of this tooltip? I have to use only html and preferably the tooltip option (I need to make a popup balloon). I know I can do something like this: <A title="Go to chapter two"> chapter two</A> But how do I change the font size of the title (in this example it is "Go to chapter two")...
Back
Top