CSS Stylesheet Formatting Help?

So, the second menu's UL#tpmn needs these rules applied to it.

So, the second menu's UL#tpmn needs these rules applied to it: margin:0 auto; position:static; overflow:hidden; display:block; Also, for good measure, you should also apply text-align:center to its containing element. Also, it appears that there are more than one UL with the same id (#tpmn). You should give one of them a different ID to avoid conflicts.

In general you can center static elements using auto margins. From the W3C: If both 'margin-left' and 'margin-right' are 'auto', their used values are equal. This horizontally centers the element with respect to the edges of the containing block.

w3.org/TR/CSS21/visudet.html#blockwidth Applied to your site: #tpmn { margin: 0 auto; width: 300px; }.

Well, that should be easy, however your page is formatted with quite a few css errors. Right away I noticed that there are several list items that all have the same id of "cts". These should be given classes as id's need to be unique.

Try running your file through the w3c css validator: jigsaw.w3.org/css-validator/ Once your page is formatted correctly, you can use text-align center on the parent container, or if you have to position them absolutely as they are now, then give the parent container a width, position it left 50% and give it a negative margin-left of half the width. If your still having trouble, put it in a fiddle (jsfiddle. Net) and it will be much easier to help you out.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions