Forum: Site Layout and Usability Feb 15th, 2008 |
| Replies: 2 Views: 1,010 There is actually an entire section (http://www.daniweb.com/forums/forum55.html) of this site dedicated to website reviews.
You will find people there to assist you. |
Forum: Site Layout and Usability Feb 14th, 2008 |
| Replies: 1 Views: 759 The hyphen is the correct notation when splitting a word...even when the word itself is hyphenated. |
Forum: Site Layout and Usability Jan 23rd, 2008 |
| Replies: 3 Views: 1,220 I modified your code as follows:
For the css, I changed the main id to:
#main{
margin-top: 15px;
float: left;
} |
Forum: Site Layout and Usability Jan 23rd, 2008 |
| Replies: 4 Views: 1,108 I use javascript for my navigation and then simply call the script from each page.
That way I only need to update the javascript file. |
Forum: Site Layout and Usability Jan 8th, 2008 |
| Replies: 22 Views: 5,022 I use Dreamweaver simply because I like the auto complete and color coding features of it...but I still do all of my coding line by line. |
Forum: Site Layout and Usability Dec 21st, 2007 |
| Replies: 4 Views: 1,107 Interesting idea...how do you use a div to link to another html file? |
Forum: Site Layout and Usability Dec 20th, 2007 |
| Replies: 4 Views: 1,107 You can use find and replace |
Forum: Site Layout and Usability Dec 17th, 2007 |
| Replies: 9 Views: 2,846 I use JavaScript and CSS for my drop down menus.
To get the search engines to follow the menu links hidden by the JavaScript, I add the section to my code:
<!-- Menu Links for Search Engines... |
Forum: Site Layout and Usability Dec 11th, 2007 |
| Replies: 3 Views: 976 Could this be done using an iframe? Just a thought. |
Forum: Site Layout and Usability Sep 17th, 2006 |
| Replies: 5 Views: 19,364 This tutorial will explain how to code a perfectly cross-browser compatible, single-level drop-down menu for your website. The first thing you are going to need is a little bit of JavaScript courtesy... |
Forum: Site Layout and Usability Sep 14th, 2006 |
| Replies: 6 Views: 1,841 Oh, for Pete's sake...
instead of
<a href="page.htm">relative link to page</a>
you would use
<a href="http://www.yoursite.com/page.htm">absolute link to page</a> |
Forum: Site Layout and Usability Sep 9th, 2006 |
| Replies: 7 Views: 4,414 Can you upload an htm file so I can look at it? |
Forum: Site Layout and Usability Sep 7th, 2006 |
| Replies: 19 Views: 8,147 That does look pretty simple...
...and this doesn't reload the menu.php file every time a new page is loaded? |
Forum: Site Layout and Usability Sep 7th, 2006 |
| Replies: 19 Views: 8,147 Yeah...without some type of server-side programming, the only way I know of to do that is with frames. |
Forum: Site Layout and Usability Sep 5th, 2006 |
| Replies: 7 Views: 4,414 That's because png is a graphic file...not a page.
You have to put your png graphics on a web page and then link the pages. |
Forum: Site Layout and Usability Sep 5th, 2006 |
| Replies: 3 Views: 1,679 we were all beginners once...and the little details are easy to overlook.
I've had this problem myself...lol That's wht I knew the answer! |
Forum: Site Layout and Usability Sep 5th, 2006 |
| Replies: 3 Views: 1,679 You need to add a width to your table. |
Forum: Site Layout and Usability Sep 5th, 2006 |
| Replies: 7 Views: 4,414 wouldn't relative links work for that? |
Forum: Site Layout and Usability Sep 2nd, 2006 |
| Replies: 19 Views: 8,147 The css should kick in once the page is written.
Give the banner image an id and write the css for it. |
Forum: Site Layout and Usability Sep 1st, 2006 |
| Replies: 2 Views: 1,533 Use the css style overflow: scroll |
Forum: Site Layout and Usability Sep 1st, 2006 |
| Replies: 19 Views: 8,147 php is beyond my little brain at the moment...
for a banner...the quick and dirty javascript is
document.write('<a href="bannerLink.htm"><img src="yourImage.jpg" /></a>'); |
Forum: Site Layout and Usability Sep 1st, 2006 |
| Replies: 19 Views: 8,147 I use javascript for this.
I have a menu.js file that wil update my menu links sitewide. I do the same for my footer as well. |
Forum: Site Layout and Usability Aug 30th, 2006 |
| Replies: 4 Views: 1,888 I like the all-in-one form handler from bignosebird.com.
It will do exactly what you are asking for here...and it is free. |
Forum: Site Layout and Usability Aug 30th, 2006 |
| Replies: 4 Views: 1,888 Your Web host probably has a mail script already installed on their server for you to use. Most give you some documentation on how to use it as well. |
Forum: Site Layout and Usability Aug 30th, 2006 |
| Replies: 3 Views: 1,601 I haven't used any of them...but I see Joomla mentioned a lot. |
Forum: Site Layout and Usability Aug 25th, 2006 |
| Replies: 6 Views: 2,872 Unfortunately, it is a part of your host's cgi mail program.
For instance, in the BNB program, you add the following lines to your form:
<input type="hidden" name="ok_url"... |
Forum: Site Layout and Usability Aug 25th, 2006 |
| Replies: 6 Views: 2,872 Yeah...that's what I said the first time I wanted to have form information sent back to me from a Web site.
I came across a script back then from a website called bignosebird.com.
You can check... |
Forum: Site Layout and Usability Aug 25th, 2006 |
| Replies: 6 Views: 2,872 The cgi mail script usually provides an option for which page to send the user to upon completion of the form |
Forum: Site Layout and Usability Aug 22nd, 2006 |
| Replies: 4 Views: 9,491 What resolution is your monitor set to?
It appears to be looking normally in 1024 x 768. |
Forum: Site Layout and Usability Aug 13th, 2006 |
| Replies: 20 Views: 4,006 OK Chief,
I have the solution you seek...
I am attaching two javascript files which both need to be referenced the head of each page you want to modify according to browser window size.
Here... |
Forum: Site Layout and Usability Aug 12th, 2006 |
| Replies: 2 Views: 2,385 I know this is an old thread, but I thought it was worth resurrecting for a solution.
The following script will disguise the e-mail link
<a href="mailto:name@server">name@server</a>
as |
Forum: Site Layout and Usability Aug 11th, 2006 |
| Replies: 20 Views: 4,006 Hmm...
yes...it can be done.
You will need to creat another .js file and add the following:
if (window.screen.width <= 800)
document.write('<img name="" src="image1.jpg" width="779"... |
Forum: Site Layout and Usability Aug 11th, 2006 |
| Replies: 20 Views: 4,006 did you refresh your browser window?
It will only resize the image when the page is loaded. |
Forum: Site Layout and Usability Aug 11th, 2006 |
| Replies: 20 Views: 4,006 Well...almost the same result. The first code checks the screen resolution, the second code checks the browser window width.
It depends on what you want to base your image size on. |
Forum: Site Layout and Usability Aug 11th, 2006 |
| Replies: 20 Views: 4,006 Use one or the other in your .js file. They should both yield the same result.
You can then modify the code to fit your needs. |
Forum: Site Layout and Usability Aug 11th, 2006 |
| Replies: 20 Views: 4,006 Oh crap...
The initial line in that first code
pageImage = getElementById('imageID');
Should be |
Forum: Site Layout and Usability Aug 10th, 2006 |
| Replies: 20 Views: 4,006 If your pages are online, send me a link and I will take a look at them. |
Forum: Site Layout and Usability Aug 9th, 2006 |
| Replies: 20 Views: 4,006 <img src="image.jpg" id="imageID">
You have the right idea, but you give the image an ID, not a name. |
Forum: Site Layout and Usability Aug 8th, 2006 |
| Replies: 20 Views: 4,006 a .js file is a javascript file.
You can just put the code in a text file and change the extension to .js instead of .txt
To call the script from a Web page, add the following to the head... |
Forum: Site Layout and Usability Aug 8th, 2006 |
| Replies: 20 Views: 4,006 In this example, the main image on every page would have the id "imageID".
You can place this code into a .js file and link to it from inside the head element or add it directly inside the head... |