Link to home
Create AccountLog in
Avatar of rheide
rheideFlag for United States of America

asked on

CSS Alignment Question

All,
Our shopping cart app (.asp) has some css code that shows the categories on the left side of the screen.

On the same line (but on the right), we would like to add a log out text link. I'm NO expert in CSS but can usually figure this stuff out but I'm stuck.

This code is used for other things so I'd like to be able to add an element (not sure the right lingo) to it so it doesn't affect the current css.
CSS CODE:
.pcPageNav {
		text-align: left;
		width: 100%;
		border: 0;
		border-collapse: collapse;
		margin: 10px 0 10px 5px;
	}


CODE ON PAGE (I removed the unimportant asp code):

<div class="pcPageNav">
navigation goes here
</div>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of McOz
McOz

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of rheide

ASKER

Beautiful

I wasn't using <span> - that was the key!

Thanks a bunch!!!!