[css-d] nav link states

2010-10-18 Thread Dudley Barker
What is the state called when I click on one of a number of links on a navbar and while I am visiting that page, the link stays lit so that if I forget where I am, I need simply glance up at the navbar to see where I am? And the million dollar question is: How do I style such? Thanks. D

Re: [css-d] nav link states

2010-10-18 Thread G.Sørtun
That link-state is called Visited. And the million dollar question is: How do I style such? a:visited { your styles here } regards Georg __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] nav link states

2010-10-18 Thread Chris F.A. Johnson
On Mon, 18 Oct 2010, Dudley Barker wrote: What is the state called when I click on one of a number of links on a navbar and while I am visiting that page, the link stays lit so that if I forget where I am, I need simply glance up at the navbar to see where I am? You should not have a link

Re: [css-d] nav link states

2010-10-18 Thread Chris F.A. Johnson
On Mon, 18 Oct 2010, Chris F.A. Johnson wrote: On Mon, 18 Oct 2010, Dudley Barker wrote: What is the state called when I click on one of a number of links on a navbar and while I am visiting that page, the link stays lit so that if I forget where I am, I need simply glance up at the navbar to

Re: [css-d] [+] nav link states

2010-10-18 Thread Thierry Koblentz
What is the state called when I click on one of a number of links on a navbar and while I am visiting that page, the link stays lit so that if I forget where I am, I need simply glance up at the navbar to see where I am? And the million dollar question is: How do I style such? You could

Re: [css-d] [+] nav link states

2010-10-18 Thread Michael Stevens
What is the state called when I click on one of a number of links on a navbar and while I am visiting that page, the link stays lit so that if I forget where I am, I need simply glance up at the navbar to see where I am? And the million dollar question is: How do I style such? You could

[css-d] div id=nav VS. nav

2010-10-18 Thread Rory Bernstein
Hello All, I have this web page: http://weinraub.ehclients.com/home/ I am trying to use some CSS3 elements here. I have a div with id=nav, and everything is working fine. (for the nav list at top on the white background) But, when I change that div instead to a nav CSS3 thing, the white BG

Re: [css-d] div id=nav VS. nav

2010-10-18 Thread Shawn Lawler
Try adding: display:block; to your nav rule. Also-- The tags nav and footer aren't CSS, they're HTML (in this case, HTML5). Shawn On 10/18/2010 10:37 AM, Rory Bernstein wrote: Hello All, I have this web page: http://weinraub.ehclients.com/home/ I am trying to use some CSS3 elements here.

Re: [css-d] div id=nav VS. nav

2010-10-18 Thread Gabriele Romanato
Hi! What you're using here is not CSS3, but actually HTML5 brand new elements. The point is that browsers currently still don't use an associated default style sheet for these elements. Further, some browsers do not recognize them as HTML elements. For example, Firefox 3.6.8 doesn't

[css-d] Background bullet for paragraphs

2010-10-18 Thread Linda Miller, DVM
I have about 700 pages (eBook) that were once created in Microsoft Office. The author was not intending to create HTML pages in the beginning. I have all of the pages cleaned up except for one thing and I really do not want to go through each of the pages and individually alter them. The

Re: [css-d] div id=nav VS. nav

2010-10-18 Thread Andree Hollander
On 2010-10-18, at 17:37, Rory Bernstein wrote: I have this web page: http://weinraub.ehclients.com/home/ I am trying to use some CSS3 elements here. I have a div with id=nav, and everything is working fine. (for the nav list at top on the white background) But, when I change that div

Re: [css-d] nav link states

2010-10-18 Thread tedd
At 11:56 AM +0200 10/18/10, Dudley Barker wrote: What is the state called when I click on one of a number of links on a navbar and while I am visiting that page, the link stays lit so that if I forget where I am, I need simply glance up at the navbar to see where I am? And the million dollar

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Bobby Jack
--- On Mon, 10/18/10, Linda Miller, DVM anm...@bellsouth.net wrote: p class=imageBulletsimg border=0 width=10 height=10 src=Image_files/image003.gifnbsp;nbsp;And the info for the paragraph/p Is there a way to shorten the above and use CSS? Something like using the image as a background

Re: [css-d] div id=nav VS. nav

2010-10-18 Thread Rory Bernstein
Hmm. I think I am doing it correctly; I have just nav/nav on the one that is my HTML5 version (sorry, I was calling this css3 when of course I am talking about the use of CSS to style HTML5 elements). And I use this CSS to refer to it: nav {styles here} (no # in front of nav in the style sheet)

[css-d] Problem hiding menu items just in Google Chrome

2010-10-18 Thread Neil Hunt
Trying to hide the home link on main page of webpage I am working on. The home link being hidden seems to work fine on all browsers (IE, Firefox, Opera, Safari) except Chrome. On Chrome the home link is not hidden. I have tried using display: none and also position: absolute along with left:

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Linda Miller, DVM
p.imageBullets { background: url('Image_files/image003.gif') no-repeat top left; padding-left: 16px;} Thanks. That is a start. But, since the image is a background, it does not push the text over. Instead, the image is behind the text. Should I just add nbsp; to the beginning of the string

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Climis, Tim
p.imageBullets { background: url('Image_files/image003.gif') no- repeat top left; padding-left: 16px;} Thanks. That is a start. But, since the image is a background, it does not push the text over. Instead, the image is behind the text. Should I just add nbsp; to the beginning of the

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Linda Miller, DVM
I get it now. It was me that was confused. This works. p.imageBullets { background: url('Image_files/image003.gif') no-repeat left center; padding-left: 40px;margin-left:0;} I added a margin-left:0 to position it like I wanted and centered the image with the text. Is there a way to style that

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Climis, Tim
For instance, in the img tag, you are able to control the width and the height of the image. How do you do this in the CSS? For background images, you can't. You have to do it by opening the image file and changing its size, and then saving it. ---Tim

Re: [css-d] div id=nav VS. nav

2010-10-18 Thread Rory Bernstein
Thanks to everyone who wrote in about the HTML5 problem I am having. I am going to stick with the HTML4 version for now. I appreciate the help! You guys are great. Rory On Oct 18, 2010, at 12:58 PM, Andree Hollander wrote: On 2010-10-18, at 17:37, Rory Bernstein wrote: I have this

[css-d] Layout problems: extra vertical space

2010-10-18 Thread Rory Bernstein
Here I am again, with different layout problems on the same project, different page: http://weinraub.ehclients.com/lawyers/ You will see some annoying grey, horizontal strips on the page: under the photo of the windows under the black nav bar another one just under that... and one at the bottom

[css-d] shadow and blur pitfalls?

2010-10-18 Thread John
I recently became aware that CSS allows for a drop shadow to be assigned to an object, and for that shadow to be blurred, alpha varied, colored, etc. Has anyone here who's used this feature had any problems with it? I'm conceiving a multi-layered CSS site and wouldn't want any weird

Re: [css-d] Layout problems: extra vertical space

2010-10-18 Thread G.Sørtun
http://weinraub.ehclients.com/lawyers/ You will see some annoying grey, horizontal strips on the page: under the photo of the windows under the black nav bar another one just under that... and one at the bottom Declare... img.yourclass {display: block;} ...or... img.yourclass

Re: [css-d] Layout problems: extra vertical space

2010-10-18 Thread Rory Bernstein
Thanks, Georg. That helped a lot! http://weinraub.ehclients.com/lawyers/ It is strange, but the image of the windows I had to use the vertical-align: bottom; rule, and the other 2 images liked the display: block; rule. When I used the display rule on the windows it moved it out to the right of

Re: [css-d] Layout problems: extra vertical space

2010-10-18 Thread G.Sørtun
Depending on relation to other elements you may have to add 'clear: left', 'right' or 'both' on an image to make it stay in position when applying 'display: block'. Images do after all start to behave like block-elements when you declare it. regards Georg

Re: [css-d] shadow and blur pitfalls?

2010-10-18 Thread Al Sparber
From: John j...@coffeeonmars.com Will I be ok provided I assign the shadow-casting object to the top Z layer? Or, are there more tricks to know, or booby traps waiting for me? I assume you are talking about the box-shadow property. If so, the shadow is glued, z-index and all, to the element

Re: [css-d] Layout problems: extra vertical space

2010-10-18 Thread Rory Bernstein
Ah. OK, makes sense. Thank you so much. Always an education on this list. Rory On Oct 18, 2010, at 3:49 PM, G.Sørtun wrote: Depending on relation to other elements you may have to add 'clear: left', 'right' or 'both' on an image to make it stay in position when applying 'display: block'.

Re: [css-d] shadow and blur pitfalls?

2010-10-18 Thread Al Sparber
From: John j...@coffeeonmars.com On Oct 18, 2010, at 1:04 PM, Al Sparber wrote: I assume you are talking about the box-shadow property. If so, the shadow is glued, z-index and all, to the element you assign it to. Thank you, Al...and since the shadow belongs do the item to which it's

Re: [css-d] Background bullet for paragraphs

2010-10-18 Thread Philippe Wittenbergh
On Oct 19, 2010, at 3:32 AM, Climis, Tim wrote: For instance, in the img tag, you are able to control the width and the height of the image. How do you do this in the CSS? For background images, you can't. You have to do it by opening the image file and changing its size, and then saving

[css-d] container won't center

2010-10-18 Thread r...@thedesignedge.com
Having a unusual issue with centering a container -- it won't. Thanks for any help. Rick http://www.hpf.com.php5-19.websitetestlink.com/index.shtm -- Rick Ranum Designedge thedesignedge.com 360-413-9848 __ css-discuss

Re: [css-d] container won't center

2010-10-18 Thread Rod Castello
- Original Message From: r...@thedesignedge.com r...@thedesignedge.com To: css-d@lists.css-discuss.org Sent: Mon, October 18, 2010 9:20:34 PM Subject: [css-d] container won't center Having a unusual issue with centering a container -- it won't. Thanks for any help. Rick