Dumb web design question #6502
Dumb web design question #6502
So, I've agreed to sling together a few pages for my stepmother's PR company in a very corporate sort of fashion, and I've already done an extremely corporate layout; but I haven't done much web stuff in ages. What I'd like to ask is, are frames still the done thing these days or is there a better way of doing (a bunch of pages with a navbar on one side) now? I was never very fond of frames but they seemed to work....ish.
Suggestions?
Suggestions?
Frames if you're low-tech. Make sure if you use them there's no scrollbar. Apparently that's very unprofessional.
The most common way of doing it now is generating the pages in PHP and attaching a menu via the code with include statements, but I suspect you'll not be getting that complex.
BTW for a PR company, I would have expected a bigger web budget. No offence.
The most common way of doing it now is generating the pages in PHP and attaching a menu via the code with include statements, but I suspect you'll not be getting that complex.
BTW for a PR company, I would have expected a bigger web budget. No offence.
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
― Terry A. Davis
I've got it set up with tables at the moment, but maintaining links is a bit of a pain in the arse as soon as you have more than about 3 pages.Dave wrote:Frames are gay. I figure that if I use them, I failed. At the very least use tables
What's a real pain in the arse is that I keep forgetting that most people don't have a huge widescreen monitor.
The main aim is actually to make the whole thing "past-proof" rather than "future-proof" - most of the potential clients are UK small-to-medium businesses and therefore are quite likely to still be running Win98 or OS9, so it's meant to be as basic as possible.
-
+JuggerNaut+
- Posts: 22175
- Joined: Sun Oct 14, 2001 7:00 am
- FragaGeddon
- Posts: 3229
- Joined: Sun Sep 17, 2000 7:00 am
I got a program that can do a nav bar if you want it.Geebs wrote:I've got it set up with tables at the moment, but maintaining links is a bit of a pain in the arse as soon as you have more than about 3 pages.Dave wrote:Frames are gay. I figure that if I use them, I failed. At the very least use tables
What's a real pain in the arse is that I keep forgetting that most people don't have a huge widescreen monitor.
The main aim is actually to make the whole thing "past-proof" rather than "future-proof" - most of the potential clients are UK small-to-medium businesses and therefore are quite likely to still be running Win98 or OS9, so it's meant to be as basic as possible.
Then you basically link to the nav bar file in the table.
maybe the box model thing, http://css-discuss.incutio.com/?page=BoxModelHackGeebs wrote:Hmm, new question. Why is it that all browsers still display the elements completely differently even if you are writing validated css?
or the font thing,
http://www.alistapart.com/articles/elastic
neither of those are especially good links, just the first hits on google.
basically for the box thing, ie puts paddings and borders inside the width/height of an element, and mozilla puts paddings and borders outside the width/height.
for the font thing, ie4/5 defaults to a larger size than other browsers (or the other way around, i forget).
using ems and percentages can give really good results, but it's a lot of fucking about, so if you're just making this one site - stick to pixels, use container elements (so that it doesn't matter which sides the borders and padding are on) to get positioning the same across browsers and use inheritance wherever you can because it makes for easier maintenance/tweaking later on.
