A lot of CMS software packages have mobile friendly "sub-templates" that reformat the pages into a mobile-friendly format whenever the website detects a mobile device OS/browser is looking at the page.raptor wrote:When you force a page width using   (NBSP) instead of using align right/left to position your pics like TAM suggested, you risk alienating people who have a different window size (or monitor size) than you're trying to force. Also consider that more and more people are accessing the web from mobile devices.
I second the suggestion to list the full price instead of hiding the additional charges ($20 range fee? really?) on a different page.
Search found 3 matches
- Fri Aug 26, 2011 4:15 pm
- Forum: Instructors' Corner
- Topic: My website
- Replies: 12
- Views: 2491
Re: My website
- Thu Aug 25, 2011 11:00 am
- Forum: Instructors' Corner
- Topic: My website
- Replies: 12
- Views: 2491
Re: My website
Thanks for the props, Charles.
- Thu Aug 25, 2011 8:01 am
- Forum: Instructors' Corner
- Topic: My website
- Replies: 12
- Views: 2491
Re: My website
Take this as constructive criticism from someone who is self-employed as a website designer.....
Don't center align all of your text. It makes it harder to read because it causes line breaks where the eye does not expect to see them. Everything starting with "The State of Texas has adopted..." should be left aligned.
Next, your page has scads of empty <div></div> tags and unnecessary characters to force page formatting that aren't necessary to get the exactly same look that you have. All that extra crap in the HTML just maks for messy pages and makes it more difficult to further edit the page in the future. For example, beginning at line 103, you have the following code:
You could achieve the exact same thing this way:
PM me if you would like some professional assistance.
Don't center align all of your text. It makes it harder to read because it causes line breaks where the eye does not expect to see them. Everything starting with "The State of Texas has adopted..." should be left aligned.
Next, your page has scads of empty <div></div> tags and unnecessary characters to force page formatting that aren't necessary to get the exactly same look that you have. All that extra crap in the HTML just maks for messy pages and makes it more difficult to further edit the page in the future. For example, beginning at line 103, you have the following code:
Code: Select all
<div style="font-style: normal; font-weight: normal; font-family: tahoma, arial, helvetica, sans-serif; font-size: 12px; color: #4c4c4c; "><img alt="" src="images/24475767.jpg" />                                                                                                          <img alt="" src="images/24476105_1qtb.jpg" /></div>
<div style="font-style: normal; font-weight: normal; font-family: tahoma, arial, helvetica, sans-serif; font-size: 12px; color: #4c4c4c; "><br />
Code: Select all
<p><img src="images/24475767.jpeg" width="232" height="217" align="left" /><img src="images/24476105_1qtb.jpg" align="right" /></p>
<p> </p>