|
| |
|
|
rdouglass
Posts: 9187 From: Biddeford, ME USA Status: online
|
CSS Attempts - 8/5/2005 13:43:04
Hi All, Been attempting to work CSS into all my new projects. I've quite a bit in this project and am curious as to how it looks in other folks browsers. Some of the functionality is still to be tweaked but I'm asking for critiques on this site: http://www.clarkinsurance.com/LTC2/ The menu and much of the content is CSS and everything in the site is DB driven and accessable by back-end forms. Essentially a content management system that controls the menu and sub-menu items, the main content, and sidebar comments but you can't get to the controls from those pages.
_____________________________
Don't take you're eye off your final destination. ASP Checkbox Function Tutorial.
|
|
|
|
dpf
Posts: 7121 Joined: 11/12/2003 From: India-napolis Status: offline
|
RE: CSS Attempts - 8/5/2005 14:12:02
looks great, roger - nice job.
_____________________________
Dan
|
|
|
|
mar0364
Posts: 3072 Joined: 4/5/2002 From: Florida, US Status: offline
|
RE: CSS Attempts - 8/5/2005 22:31:01
Very nice work!!!! Form and function. You gotta love that.
|
|
|
|
rdouglass
Posts: 9187 From: Biddeford, ME USA Status: online
|
RE: CSS Attempts - 8/6/2005 2:30:19
quote:
that section of the page totaling 744px compared to the overall width of the table above being 747px Sounds like a good place to start. Thanks.
_____________________________
Don't take you're eye off your final destination. ASP Checkbox Function Tutorial.
|
|
|
|
d a v e
Posts: 4055 Joined: 7/24/2002 From: England (but live in Finland now) Status: offline
|
RE: CSS Attempts - 8/7/2005 7:33:13
bar using a bigger font size you could try ... line-height:1.4; up to about line-height:1.6; for your main text (try it in the edit css thingy in firefox (under css in the developer toolbar) makes it more readable :)
_____________________________
David Prescott Gekko web design
|
|
|
|
spitfire
Posts: 424 Joined: 8/6/2005 Status: offline
|
RE: CSS Attempts - 8/7/2005 12:11:31
In IE6, I found it difficult to make out the navigation and footer text against the background. I only mention this because it seems the LTC service includes people with diabetes, a condition that can lead to varying degrees of sight loss. Not quite so difficult to see in FF because I can increase the text size. Applies to both browsers - normal and on hover. Otherwise a very pleasing look and feel that suits the apparent purpose of the site very well.
|
|
|
|
rdouglass
Posts: 9187 From: Biddeford, ME USA Status: online
|
RE: CSS Attempts - 8/8/2005 8:52:03
Thank you all for that very valuable input.
_____________________________
Don't take you're eye off your final destination. ASP Checkbox Function Tutorial.
|
|
|
|
mar0364
Posts: 3072 Joined: 4/5/2002 From: Florida, US Status: offline
|
RE: CSS Attempts - 8/8/2005 9:30:07
Whats going on in the ASP is really impressive. How many lines of code on that page? I'm interested in the architecture of the site. Really neat! How did you do it?
|
|
|
|
rdouglass
Posts: 9187 From: Biddeford, ME USA Status: online
|
RE: CSS Attempts - 8/8/2005 10:10:21
quote:
How many lines of code on that page? Including the 'includes' and the stylesheet there's almost 1500 lines of code. It's all DB driven content and menu navigation (13 tables total) and I've tried to use as much CSS as I could. The basic structure is a table but just about everything else is using CSS. Next version I hope to be all CSS. There is a full backend content management system that is all editable with forms.
_____________________________
Don't take you're eye off your final destination. ASP Checkbox Function Tutorial.
|
|
|
|
caz
Posts: 3510 Joined: 10/10/2001 From: Somewhere south of Chester, UK Status: offline
|
RE: CSS Attempts - 8/8/2005 20:39:28
If you took away that border image and replaced it with a border on the top of the cell with css would it give the appearance you wanted? Or can that not be done ( my css with tables is lousy).
_____________________________
Do not meddle in the affairs of cats, for they are subtle and will dance, or more on your keyboard. Cheshire cat. www.doracat.co.uk I remember when it took less than 4hrs to fly across the Atlantic.
|
|
|
|
rdouglass
Posts: 9187 From: Biddeford, ME USA Status: online
|
RE: CSS Attempts - 8/9/2005 8:43:37
quote:
replaced it with a border on the top of the cell with css would it give the appearance you wanted? Funny, I just did that last nite on the copy of that site but I did it with a colored cell background. Exact same effect and no problems with lining up the top and bottom since there's nothing to line up. And Duane, your screenshot isn't the effect I was after at all. Those are supposed to be cascading menus on the left and not dup's at all. What browser are you using? Thanks all again
_____________________________
Don't take you're eye off your final destination. ASP Checkbox Function Tutorial.
|
|
|
|
BeTheBall
Posts: 6354 Joined: 6/21/2002 From: West Point Utah USA Status: offline
|
RE: CSS Attempts - 8/9/2005 9:33:07
Firefox. Latest version, at least I think so as I was prompted to update just last week.
_____________________________
Duane Some people are like Slinkies . . . Not really good for anything . . . . . But they still bring a smile to your face when you push them down a flight of stairs.
|
|
|
|
caz
Posts: 3510 Joined: 10/10/2001 From: Somewhere south of Chester, UK Status: offline
|
RE: CSS Attempts - 8/9/2005 11:59:23
I got the same as Duane on Fx1.0.6, but it works as you want it to in IE6.
_____________________________
Do not meddle in the affairs of cats, for they are subtle and will dance, or more on your keyboard. Cheshire cat. www.doracat.co.uk I remember when it took less than 4hrs to fly across the Atlantic.
|
|
|
|
Tailslide
Posts: 5972 Joined: 5/10/2005 From: Out here on the raggedy edge Status: offline
|
RE: CSS Attempts - 8/9/2005 12:33:40
OK I've got it I think - I reckon you're closing your parent <li>s too soon - you've got: <li>item one</li>
<li>item two</li>
<ul>
<li>subitem one</li>
</li>subitem twon</li>
</ul>
<li>item three</li> When in fact it should be:
<li>item one</li>
<li>item two
<ul>
<li>subitem one</li>
</li>subitem twon</li>
</ul>
</li>
<li>item three</li> The closing tag for the item two should be after the sub item list. IE being IE interprets the code incorrectly as a sub list which is what you actually wanted but FF etc interpret it correctly as another separate list.
_____________________________
"My strategy is so simple an idiot could have devised it" Little Blue Plane Web Design | Blood, Sweat & Rust - A Land Rover restoration project
|
|
|
|
d a v e
Posts: 4055 Joined: 7/24/2002 From: England (but live in Finland now) Status: offline
|
RE: CSS Attempts - 8/9/2005 12:59:42
if you were after an indented menu thingy that works in IE and firefox i did one for example here http://www.flaxandhemp.bangor.ac.uk/english/fibre_culti.htm i used a definition list (symantically naughty, but hey sometimes a bit of semantic mischievousness can be good for you;) is that kind of how you meant?
_____________________________
David Prescott Gekko web design
|
|
|
|
rdouglass
Posts: 9187 From: Biddeford, ME USA Status: online
|
RE: CSS Attempts - 8/9/2005 14:09:40
quote:
a. I have no idea what the next sentence means Just means I was building all of my <ul> and <li> from a database query. I'm building content management into this and all of the items in the menu are topics and each topic can have pages (which show up as sub menu items). Topics and pages are stored in separate tables in the DB but are delivered to the page in 1 query result. Since I want one topic to be able to support more than 1 page, I had to build a recursive ASP routine to figure out what goes where. That clear as mud? Anyways, I had a hard time nesting the submenu <ul> inside the <li> of the topic item.
_____________________________
Don't take you're eye off your final destination. ASP Checkbox Function Tutorial.
|
|
|
|
d a v e
Posts: 4055 Joined: 7/24/2002 From: England (but live in Finland now) Status: offline
|
RE: CSS Attempts - 8/9/2005 14:10:38
did you try using a definition list?
_____________________________
David Prescott Gekko web design
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|