473,473 Members | 1,889 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Looking for advice, reading list

I'm looking for general advice, pointers to web pages, books, whatever.

I have a moderately successful web site. The major complaint that I
get, time after time, is "It's UUUGLY"

As I have explained at http://aplawrence.com/Blog/B1228.html , I
understand that, and to some extent it's deliberate: I am NOT looking
for flash over content and I want my pages to remain fast, Lynx
friendly, and easy to read.

On the other hand, if there is a way to have both, I'd like to do that.

I DO use stylesheets, but I'm probably not doing it "right". I'd like
to improve.

Any advice (other than the "you're a moron" that I already have) is
appreciated.

A couple of specific things: I read all kinds of conflicting advice
about default font sizes. Some people say do not set anything, but if
I don't, IE6 comes up with a gigantic ugly mess and I get the pitying
comments. But if I DO set it to something that looks a little smaller,
I get other people complaining that some things are too small to read..
so frustrating! Yes, people CAN adjust font size in their browsers but
apparently they don't like to, so is the answer to go along with what
MOST pages do - and if so, what is that magic setting?

Also: how on earth can you keep dynamic pages "Valid HTML 4.01
Transitional"? For example,
somebody added a comment referencing a Slashdot link that had
&from=rss at its end - the http://validator.w3.org/ doesn't like
that

TIA - I know it will probably be a lot of work, but hey, I'll learn
from it.

--
Tony Lawrence
http://aplawrence.com

Jul 21 '05 #1
4 1906
Hi,

pc****@gmail.com wrote:
I'm looking for general advice, pointers to web pages, books, whatever.

www.csszengarden.com may inspire you.

Chris
Jul 21 '05 #2
"pc****@gmail.com" <pc****@gmail.com> wrote:
I'm looking for general advice, pointers to web pages, books, whatever.

I have a moderately successful web site. The major complaint that I
get, time after time, is "It's UUUGLY"
Design skills are very hard to learn. Either you've got an eye for
design or you haven't. :-(
As I have explained at http://aplawrence.com/Blog/B1228.html , I
understand that, and to some extent it's deliberate: I am NOT looking
for flash over content and I want my pages to remain fast, Lynx
friendly, and easy to read.

On the other hand, if there is a way to have both, I'd like to do that.

I DO use stylesheets, but I'm probably not doing it "right". I'd like
to improve.
There's one error in your CSS:
http://jigsaw.w3.org/css-validator/v...1&profile=css2

Apart from that the CSS looks reasonable, probably a few things I'd do
diffierently but no howlers that I could see in a five second scan.
Except for the font size...
A couple of specific things: I read all kinds of conflicting advice
about default font sizes. Some people say do not set anything, but if
I don't, IE6 comes up with a gigantic ugly mess and I get the pitying
comments. But if I DO set it to something that looks a little smaller,
I get other people complaining that some things are too small to read..
so frustrating! Yes, people CAN adjust font size in their browsers but
apparently they don't like to, so is the answer to go along with what
MOST pages do - and if so, what is that magic setting?
Don't use em for font size. That triggers a bug in IE whereby the
difference from the default is magnified if the user has their font
size set to anything other than medium. Use percentages instead. That
will take the edge off the problem you describe.

Also, don't use Verdana. Because Verdana looks larger than other fonts
the temptation is to set a smaller font size. Avoid Verdana and you'll
find that either 100% isn't too bad after all, or that if you do feel
the urge to decrease the size you don't need to decrease it by as
much.
Also: how on earth can you keep dynamic pages "Valid HTML 4.01
Transitional"? For example,
I don't. I use Strict not Transitional. This isn't 1997 any more so
why are you still transitioning from pre-HTML4 code?
somebody added a comment referencing a Slashdot link that had
&amp;from=rss at its end - the http://validator.w3.org/ doesn't like
that


It shouldn't have complained about &amp;from=rss, was it actually
&from=rss? The answer is that if you let people add content t your web
site you need to parse that content and correct any errors. That's a
programming issue.

Steve

Jul 21 '05 #3
pc****@gmail.com wrote:
I'm looking for general advice, pointers to web pages, books, whatever.

I have a moderately successful web site. The major complaint that I
get, time after time, is "It's UUUGLY"

As I have explained at http://aplawrence.com/Blog/B1228.html , I
understand that, and to some extent it's deliberate: I am NOT looking
for flash over content and I want my pages to remain fast, Lynx
friendly, and easy to read.

On the other hand, if there is a way to have both, I'd like to do that.

I DO use stylesheets, but I'm probably not doing it "right". I'd like
to improve.

Any advice (other than the "you're a moron" that I already have) is
appreciated.

A couple of specific things: I read all kinds of conflicting advice
about default font sizes. Some people say do not set anything, but if
I don't, IE6 comes up with a gigantic ugly mess and I get the pitying
comments. But if I DO set it to something that looks a little smaller,
I get other people complaining that some things are too small to read..
so frustrating! Yes, people CAN adjust font size in their browsers but
apparently they don't like to, so is the answer to go along with what
MOST pages do - and if so, what is that magic setting?

Also: how on earth can you keep dynamic pages "Valid HTML 4.01
Transitional"? For example,
somebody added a comment referencing a Slashdot link that had
&amp;from=rss at its end - the http://validator.w3.org/ doesn't like
that

TIA - I know it will probably be a lot of work, but hey, I'll learn
from it.

have a look around, see what you like, and create something like that
for your own, and stick to it, nomatter what other morons tell you.

btw, i personally think that the style should fit the site's purpose.
plain info site gets a plain design,
gamesite gets a flashy site,
also remember how long you expect people to look at your site untill
they browse further. -> dont put the whole bible in one page when you
think people will watch only 2 sec.

and .. if lynx gets a high priority, then you should maybe give a equal
priority to the opinion of people using lynx...

gl

martin
Jul 21 '05 #4
Ali Babba wrote:
and .. if lynx gets a high priority, then you should maybe give a equal priority to the opinion of people using lynx...


Well, I'm not thinking of Lynx as something people use every day. But
when the gui is broken, it's nice to be able to search the web for help
with that problem, and too many pages that might otherwise be helpful
are difficult or impossible to read with Lynx or a wget or (I've been
this hard up) a telnet to port 80.

--
Tony Lawrence

Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: Jason Daly | last post by:
I'm a freshman at college as a computer science major. I'm not sure it has what I want. Does anyone know if a major commonly exists in web design (focusing in server side languages)? I want to...
3
by: aaj | last post by:
SQL SERVER 2000 Hi all This is my first attempt at writing a stored procedure. I have managed to get it working but its unlikely to be the best way of handling the problem. While writing it I...
4
by: Wayne Wengert | last post by:
I am looking for pointers to good beginner books, tutorials or other resources to help me understand how to really use XML data. I program mostly in VB (I have several applications in VB6 but am...
2
by: andyjgw | last post by:
Hi I'm a bit new to the designing of custom web page controls and using them in the properties designer window - need a little advice on a concept here. I have two properties in my control -...
20
by: Jim | last post by:
Hi, I am hoping that someone here can help me out. I am for the first time trying to implement a page design using only CSS instead of HTML tables. I've been able to get most of the page done...
4
by: tony | last post by:
I'm designing a survey form page that will be fairly complex and am becoming confident enough with PHP now to tackle most things. (Thanks to everyone here who has helped) Before I go too far...
13
by: Alan Silver | last post by:
Hello, MSDN (amongst other places) is full of helpful advice on ways to do data access, but they all seem geared to wards enterprise applications. Maybe I'm in a minority, but I don't have those...
11
by: Cliff Martin | last post by:
Hi, I am reading a fairly large file a line at a time, doing some processing, and filtering out bits of the line. I am storing the interesting information in a struct and then printing it out....
232
by: robert maas, see http://tinyurl.com/uh3t | last post by:
I'm working on examples of programming in several languages, all (except PHP) running under CGI so that I can show both the source files and the actually running of the examples online. The first...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.