I'm trying to center my text in a certain way i want it to like like this: Test Test Test Test Test Test Test Test Test Test but it always comes out like this: Test Test Test Test Test Test Test Test Test Test anyone know how to do that?
<div align="center"> test test test <br> test test test test <br> test test test </div> Is that what you mean?
Nest two divs <div align="center"> <div align="left"> Test Test Test Test Test Test Test Test Test Test </div> </div> HTML: I dunno if width will be an issue or not.
Trying using <BLOCKQUOTE></BLOCKQUOTE> as many times as necessary to get it centered. i. e. <BLOCKQUOTE><BLOCKQUOTE><BLOCKQUOTE>XXXX</BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE>
<!--the Following will keep the text to left if no class is applied to tag <p>--> <p>Test Test Test <br /> Test Test Test Test <br /> Test Test Test</p> <!--The align="center" class to <p> tag will align the text center--> <p align="center">Test Test Test <br /> Test Test Test Test <br /> Test Test Test</p> This is just an example how the text is being aligned in html page.
well my site isnt up yet. but i will post a example if what i want. i want to set my text up so it looks exactly like a google ad format
Adjust the width as necessary: <div style="width: 50%; text-align: left; margin-left: auto; margin-right: auto;"> blah blah blah blah<br /> blah blah blah blah blah<br /> blah blah blah blah </div> HTML:
Use this: <div align="left">Test Test Test <br> Test Test Test Test <br> Test Test Test </div> Always try IE and firefox simultaneously to test your html, coz. IE & FF sometimes gives surprisingly different results.
Nobody uses tables anymore? <TABLE><TR><TD><center> <table><tr><td> <IMG SRC="YOURIMAGE.JPG"> </td><td> TEST TEST TEST <br> TEST TEST TEST TEST <br> TEST TEST TEST </td></tr></table> </TD></TR></TABLE>
Tables are one way to accomplish what you're after, although that method isn't preferred anymore -- you'd do alot better, using less code, by creating a CSS style sheet to control data on your site.
how about using some CSS and usng <p style="padding left:10px"> TEST TEST TEST <br> TEST TEST TEST TEST <br> TEST TEST TEST </p> or something like that