Gadgets & Technology
Dear Community,
Our tech team has launched updates to The Nest today. As a result of these updates, members of the Nest Community will need to change their password in order to continue participating in the community. In addition, The Nest community member's avatars will be replaced with generic default avatars. If you wish to revert to your original avatar, you will need to re-upload it via The Nest.
If you have questions about this, please email help@theknot.com.
Thank you.
Note: This only affects The Nest's community members and will not affect members on The Bump or The Knot.
Okay...I have my website ready in dreamweaver with the exception of one thing...the alignment. How do I set up my site to center align no matter the screen resolution?
TIA!
Re: Dreamweaver Help
Above all tags, you would put <*"center"*> or <*align="center"*>
Remove *
(I think this will work. I use DW but haven't in awhile. Googling might work if this doesn't)
Happy, the best dog ever. ~February 1998 - July 22, 2012
I am "deaf-initely" one of a kind.
Follow me on Pinterest
Thanks...I'll try that out...here is where the site is now...any feedback is greatly appreciated
http://www.111parishwalk.com
Happy, the best dog ever. ~February 1998 - July 22, 2012
I am "deaf-initely" one of a kind.
Follow me on Pinterest
The <center> tag is actually depricated and may or may not work depending on your browser...
Put the following at the top of the code (above the first <head> tag) and it shoudl work in IE and all other browsers:
<style>
body {text-align: center; margin: 0 auto;}
</style>
that will center everything within the body of the HTML
Ops, almost forgot... that may center all the text depending on your code... if so use this:
<style>body {text-align: center; margin: 0 auto;}p {text-align: left;}</style>