Forum: JavaScript / DHTML / AJAX Mar 15th, 2006 |
| Replies: 7 Views: 1,714 Or go to start -> programs -> accessories -> notepad
Paste in your html code.
Save as java.html - remember to select 'all files and folders' in the file type below the filename box
Open in your... |
Forum: JavaScript / DHTML / AJAX Mar 6th, 2006 |
| Replies: 2 Views: 2,798 Some sample code without doctype: (coding in notepad on a uni computer, so missing all my usual assists!)
<html>
<head>
<title>hello</title>
<style type="text/css"><!--
ul ul { width: 100px;... |
Forum: JavaScript / DHTML / AJAX Mar 6th, 2006 |
| Replies: 2 Views: 2,798 in the second level menu put a height and overflow:auto in. that should work, though I haven't tested it. You might need an extra div, but I'm not sure how that would validate... |
Forum: JavaScript / DHTML / AJAX Mar 6th, 2006 |
| Replies: 1 Views: 1,657 you could try suckerfish drop down menus.
http://www.htmldog.com/articles/suckerfish/dropdowns/
but I guess you need to be familiar with the bar html to work with them.
You could just try... |
Forum: JavaScript / DHTML / AJAX Mar 6th, 2006 |
| Replies: 2 Views: 14,172 Page breaks in html... not good...
Could you export to pdf? php can be used to create pdfs. |
Forum: JavaScript / DHTML / AJAX Feb 11th, 2006 |
| Replies: 1 Views: 1,502 First off I can tell you your query has nothing to do with html...
This is a menu generated entirely by javascript, and without knowing what the variables stand for it would be difficult to recreate... |
Forum: JavaScript / DHTML / AJAX Sep 21st, 2005 |
| Replies: 3 Views: 2,766 could you load the music on a splash screen before?
e.g. cache the music on the first screen, then tell the user to click to advance to the next page once the music starts?
Just linking to the... |
Forum: JavaScript / DHTML / AJAX Jul 30th, 2005 |
| Replies: 14 Views: 29,373 Hi Pablo
That doesn't happen for me...
What browser/version are you using?
Dave |
Forum: JavaScript / DHTML / AJAX May 17th, 2005 |
| Replies: 1 Views: 3,698 Have a read over here: http://www.quirksmode.org/css/100percheight.html
I can't get it to be exactly what you want, but some of his examples do... |
Forum: JavaScript / DHTML / AJAX Apr 11th, 2005 |
| Replies: 4 Views: 5,842 No problem - glad you made sense of the explanation... ;) |
Forum: JavaScript / DHTML / AJAX Apr 9th, 2005 |
| Replies: 4 Views: 5,842 The problem appears to be that the menu uses javascript to change the cell id onMouseOver and onMouseOut. This means that the background is specified in both. IE clearly thinks it's two different... |
Forum: JavaScript / DHTML / AJAX Apr 9th, 2005 |
| Replies: 4 Views: 5,842 Hey Dance Instructor
I'll take a look at this in a few hours time - remind me if I haven't looked at it before monday! |
Forum: JavaScript / DHTML / AJAX Apr 6th, 2005 |
| Replies: 12 Views: 9,308 update: working in both but with a horizontal scrollbar in FF |
Forum: JavaScript / DHTML / AJAX Apr 6th, 2005 |
| Replies: 12 Views: 9,308 update: working in IE, but not Firefox. |
Forum: JavaScript / DHTML / AJAX Apr 5th, 2005 |
| Replies: 12 Views: 9,308 Hi Mark
I've had a look at it, and I can expand the headers, footers, right tabs etc, but I can't get the main content area to expand.
Basically it's been designed with too many tables, and... |
Forum: JavaScript / DHTML / AJAX Apr 5th, 2005 |
| Replies: 12 Views: 9,308 I handcode all my stuff in a text editor, so the dreamweaver template isn't much use to me...
Could you create a page, zip it and send it to me? |
Forum: JavaScript / DHTML / AJAX Apr 4th, 2005 |
| Replies: 12 Views: 9,308 If you post a link to a page with the template applied, or a zip of the template applied, maybe one of us can suggest something - the ability to expand and fill the screen depends on the design... |
Forum: JavaScript / DHTML / AJAX Apr 4th, 2005 |
| Replies: 14 Views: 29,373 This function appears to work in both:
<script type="text/javascript">
function addBookmark(title,url) {
if (window.sidebar) {
window.sidebar.addPanel(title, url,"");
} else if( document.all... |
Forum: JavaScript / DHTML / AJAX Feb 26th, 2005 |
| Replies: 4 Views: 4,095 Yeah - a lot of people have missed that it's that simple. I'll see if I can find some examples for you for the other link you posted in the other thread. |
Forum: JavaScript / DHTML / AJAX Feb 21st, 2005 |
| Replies: 4 Views: 4,095 ok go with the box model since I have a lecture in 15 mins:
In IE, you set the width of an object, and margins, padding, etc are subtracted from that width.
In Moz, you set a width, and... |
Forum: JavaScript / DHTML / AJAX Feb 14th, 2005 |
| Replies: 10 Views: 34,807 I believe it's either done using cookies, or by passing (small quantities) of data in the url.
E.g. I use php to pass data on one of my sites: you create an image id number, e.g. 0000001. You link... |
Forum: JavaScript / DHTML / AJAX Oct 12th, 2004 |
| Replies: 7 Views: 11,031 I was under the impression xhtml 1.1 was simply xhtml 1.0 strict with a few minor tweaks. |
Forum: JavaScript / DHTML / AJAX Oct 12th, 2004 |
| Replies: 7 Views: 11,031 Probably, yes. A developer who's 'on the ball' should at least be able to write xhtml, even if they prefer to stick to HTML 4.01 strict. |
Forum: JavaScript / DHTML / AJAX Sep 30th, 2004 |
| Replies: 7 Views: 11,031 My personal standpoint is that new sites I build will be xhtml, the old sites will be whatever standard was popular at that time. I won't be going round every site to update them.
Personally I... |
Forum: JavaScript / DHTML / AJAX Sep 13th, 2004 |
| Replies: 22 Views: 8,023 Not a good idea...
:cheesy: |
Forum: JavaScript / DHTML / AJAX Sep 13th, 2004 |
| Replies: 22 Views: 8,023 add
margin: 0;
padding: 0;
to your body declaration (yes it was that line!)
hence:
BODY {background-image: url("Images/Sideline.gif"); background-repeat: repeat-y; background-position: 0% 0%;... |
Forum: JavaScript / DHTML / AJAX Sep 11th, 2004 |
| Replies: 22 Views: 8,023 You should also have a <body> tag after your </head> tag. |
Forum: JavaScript / DHTML / AJAX Sep 11th, 2004 |
| Replies: 22 Views: 8,023 Your style sheet is being addressed on your c drive...
<LINK REL=stylesheet HREF="C:\BobbyRags(New)\BobbyRagsNew.CSS" TYPE="text/css">
Not having access to the contents of your harddrive I will... |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2004 |
| Replies: 6 Views: 7,488 so is it the flash that doesn't work or the drop down menu? |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2004 |
| Replies: 6 Views: 7,488 what I mean is: can you give us a link to the page you are working on so we can see the problem for ourselves? It's rather difficult to diagnose the problem without really being able to see it. |
Forum: JavaScript / DHTML / AJAX Jul 20th, 2004 |
| Replies: 6 Views: 7,488 can you link to the page in question? |