Hi,

I know I can move a element in a div for example a paragraph by putting:

Code:
div.main p {
	margin-left: 215px;
}
In a css file an referencing the css within the html file! However, how would I do this say with a selection of elements like headers?

I tried:

Code:
div.main h {
	margin-left: 215px;
}
But that didn't work because of the number of the particular header say "3" wasn't being referred to.

TIA

Nightwalker