Friday 7 October 2011

Need help to make these link come to center on my website?

Hello,

www.ankurjalvi.com is the link .. on index page you can ssee that links below the header are all aligned to left. I am not able to figure out how to change it to look in center in css ... any help?Need help to make these link come to center on my website?The %26quot;menu_t%26quot; is not a class as you have it here. I hope it's a typo, but a class has to have the dot in front: .menu_t



Same for the %26quot;indent%26quot; class: .indent



If you are centering text, then use the text-align: center; , otherwise, set a width (and height, if needed) and use:



margin: 0 auto;



Ron
Need help to make these link come to center on my website?
You could try to put all of that text between a %26lt;div%26gt;%26lt;/div%26gt;, give it a label (class=%26quot;center%26quot;).



Thus it should look like:



%26lt;div class=%26quot;center%26quot;%26gt;

%26lt;p%26gt;text%26lt;/p%26gt;

%26lt;p%26gt;text%26lt;/p%26gt;

%26lt;p%26gt;text%26lt;/p%26gt;

%26lt;/div%26gt;



Then under the style either on your imported css page or at the %26lt;head%26gt; put:



div.center {text-align:center}



Everything between the %26lt;div%26gt; should center.