![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have designed and written my first web site for the Cub Scout Pack that I am associated with. I am new at this and have no training so I have been learning HTML and CSS as I went along in this project. I would appreciate any comments, criticism or suggestions. |
|
There is also one pesky problem in IE that I have not been able to fix. There is some text from the last link in the footer that hangs over below this div. This does not happen in Firefox or Opera. Can anyone suggest how to fix this? |
|
Some notes: The picture in the banner is not the final version, I intend to come up with a resized version with background color the same as the banner background when time permits (and when I figure out how to do this). The links are not all active yet. This is a work in progress and I do not have content for the individual group pages yet. I do not have full content for the contacts page or the photo pages yet. I was just trying to get the format and layout straightened out. |
#3
| |||
| |||
|
|
I have designed and written my first web site for the Cub Scout Pack that I am associated with. I am new at this and have no training so I have been learning HTML and CSS as I went along in this project. |
|
There is also one pesky problem in IE that I have not been able to fix. There is some text from the last link in the footer that hangs over below this div. This does not happen in Firefox or Opera. Can anyone suggest how to fix this? Yes, it's a bizarre rendering defect in IE. |
#4
| |||||
| |||||
|
|
Adam B wrote on 26/04/2005 : I have designed and written my first web site for the Cub Scout Pack that I am associated with. I am new at this and have no training so I have been learning HTML and CSS as I went along in this project. I would appreciate any comments, criticism or suggestions. I like it. simple. easy to read. |
|
You need to make the menus consistant throughout the site though. Some pages have the order of the menus different. Not sure if they are submentus, but its a bit confusing. |
|
Once your done with the final version of your site, I am not sure if you still want to keep the w3 link validation stuff for html/css. For your targetted audience they may look like advertisements. for another industry it may be relevant, but i dont think for the scouts. |
|
There is also one pesky problem in IE that I have not been able to fix. There is some text from the last link in the footer that hangs over below this div. This does not happen in Firefox or Opera. Can anyone suggest how to fix this? Instead of this.... #footer { float:left; background:#999966; width:100%; text-align:left; margin: 0px; } do this... #footer { background:#999966; width:100%; text-align:left; margin: 0px; clear:both; } |
| Some notes: The picture in the banner is not the final version, I intend to come up with a resized version with background color the same as the banner background when time permits (and when I figure out how to do this). The links are not all active yet. This is a work in progress and I do not have content for the individual group pages yet. I do not have full content for the contacts page or the photo pages yet. I was just trying to get the format and layout straightened out. Once you have it all looking like you want it, dont have redundant or incomplete pages. It makes the site boring. Its like packing a small lolly into a big cardboard box. |
#5
| ||||||
| ||||||
|
|
Adam B wrote: I have designed and written my first web site for the Cub Scout Pack that I am associated with. I am new at this and have no training so I have been learning HTML and CSS as I went along in this project. You've learned well, grasshopper. |
|
1. the black text on dark khaki background is a bit hard to read. |
|
2. the main navigation menu items are changing from page to page which goes against the Principle of Least Surprise. A common technique is to have the current page's nav link still in the list but a different color (say, the :hover colors), or preferably not a link at all. This also gives a further hint to the visitor where he is on the site. List-a-Matic <http://css.maxdesign.com.au/listamatic/> offers lots of menu styles. |
|
3. Photos: The link to the photos for "2005 Camp Inawendiwin" is not at all obvious it is a link to photos. There should be a separate menu list that provides the photo links. I initially thought there were no photo links at all; I tried the "2005..." just to see what would happen. Surprise! |
|
4. Calendar: It would look cleaner to use a table to list the events instead of a <ul> and a slew of 's. |
|
There is also one pesky problem in IE that I have not been able to fix. There is some text from the last link in the footer that hangs over below this div. This does not happen in Firefox or Opera. Can anyone suggest how to fix this? Yes, it's a bizarre rendering defect in IE. It has to do with all the floating you are using for the footer, most of which is unnecessary. I tried a number of things and this is at least close to your original (only the changes are shown): CSS: #footer { /* float:left; */ position: relative; clear: both; } .checklink { /* float: left; */ } .rightlink { position: absolute; right: 1em; top: 0em; } HTML: div id="footer" a href="http://validator.w3.org/check?uri=referer" img src="index_files/valid-xhtml10.png" alt="Valid XHTML 1.0!" style="border: 0pt none ; width: 88px; height: 31px;" ></a a href="http://jigsaw.w3.org/css-validator/" img style="border: 0pt none ; width: 88px; height: 31px;" src="index_files/vcss.png" alt="Valid CSS!"></a a class="rightlink" href="mailto:scout.adam (AT) verizon (DOT) net" title="Let me know what you think">Comments, suggestions or requests</a /div |
#6
| |||
| |||
|
|
I will try this. It may take me a while. I have not looked into the use of tables very much yet. Yes, the spaces are quite annoying. I think HTML should have a space(#) function to insert a series of nonbreaking spaces instead of requiring strings of . |
#7
| |||
| |||
|
|
Adam B wrote: Disco Octopus wrote: Once your done with the final version of your site, I am not sure if you still want to keep the w3 link validation stuff for html/css. These are mainly there for ease of checking as pages are updated. FYI, you don't need a link in the page body to initiate validation for that page. Get the Web Developer extension for Firefox/mozilla. It has tools to validate any page, among other extremely useful development aids. I believe Opera 7+ has inbuilt validation, too. |
|
URL:http://webdeveloper.mozdev.org/ |
#8
| |||
| |||
|
|
Adam B wrote: Disco Octopus wrote: Once your done with the final version of your site, I am not sure if you still want to keep the w3 link validation stuff for html/css. These are mainly there for ease of checking as pages are updated. FYI, you don't need a link in the page body to initiate validation for that page. Get the Web Developer extension for Firefox/mozilla. It has tools to validate any page, among other extremely useful development aids. I believe Opera 7+ has inbuilt validation, too. URL:http://webdeveloper.mozdev.org/ There is also a html validator based on Tidy |
#9
| |||
| |||
|
|
4. Calendar: It would look cleaner to use a table to list the events instead of a <ul> and a slew of 's. I will try this. It may take me a while. I have not looked into the use of tables very much yet. Yes, the spaces are quite annoying. I think HTML should have a space(#) function to insert a series of nonbreaking spaces instead of requiring strings of . The data you are presenting is tabular. So a table is an appropriate |
|
[...] She likes animated gifs and flashy stuff. As you can see from the layout I came up with, my tastes run in other directions. I was also aiming for simplicity, visual consistency and accessibility. Content is the most important part of the site, or should be. Anything |
#10
| |||
| |||
|
|
Adam B wrote: Disco Octopus wrote: Once your done with the final version of your site, I am not sure if you still want to keep the w3 link validation stuff for html/css. These are mainly there for ease of checking as pages are updated. FYI, you don't need a link in the page body to initiate validation for that page. Get the Web Developer extension for Firefox/mozilla. It has tools to validate any page, among other extremely useful development aids. I believe Opera 7+ has inbuilt validation, too. URL:http://webdeveloper.mozdev.org/ |
![]() |
| Thread Tools | |
| Display Modes | |
| |