- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
8 Posted Topics
This is something I've done some extensive research on. There are licensing issues that might come up with using a font like Futura. The following article should give you a good idea of what your after. Hope it helps! =) [url]http://snook.ca/archives/html_and_css/becoming-a-font-embedding-master[/url]
Perhaps I'm not understanding you correctly, but when I load it on to a test page, everything looked correct. It didn't matter which browser I was using. The orangish menu rectangle was flush with the top of the other main box.
I have no clue why this is happening. When I load a certain page on my site, my content loads twice. Basically, my content appears to flash once. I can't figure out what's going on, but it seems to deal with the following code. The page calls urlCheck(). [CODE] // …
It would help to know what you are planning to do with the data you collect from the user. Can you explain?
This should be simple, but it's not working for me! The relevant code is beneath. This code is on my html page directly under the input field: [CODE] input = document.getElementById('hiddenInput'); var inputInt = parseInt(input.value); if (inputInt != 0) { setClick(inputInt); }[/CODE] (I've tested it to make sure it sees …
Firstly, display needs to be set to 'block' not 'visible' in your js. Also, the javascript didn't work for me until I removed: div.style.left = window.event.clientX + 'px'; div.style.top = window.event.clientY + 'px'; You should try assigning the client X and Y to their own variables and then refer to …
The basic concept behind expand and collapse is to set the visibility of a div. Basically, you want your link to call a function to show or hide the div. You will need to do something like this: [CODE] <div id="advanced" style="display:none">Advanced Features Here</div> <a onClick="showHide();return(false)" href="#">Advanced Features</a> [/CODE] [CODE] …
I just spent several hours trying to figure out how to fix my websites appearance in ie7. I've found a solution, but I have no clue why it actually worked. I'm looking for an explanation if anyone has one. My goal was to have a fixed position div across the …
The End.
alipica