Jump to content

frontpage alignment


Guest tasnimkp

Recommended Posts

Frontpage is ok but only if you know HTML well enough to determine some of the garbage it produces that way you can avoid using deprecated tags like

. You also didn't indicate if your use CSS or not. From the looks of it, you don't.

 

In Frontpage, you will need to look at the Code View pane where you can see all the coding. Look for the first table (right after you body tag) which looks like this:

 

cellspacing="0" height="799"

style="border-collapse: collapse; border: 1px solid #000000" width="815">

 

When you need to do is add a new inline css to your existing style: margin: 0 auto;

 

Here what it should look like now:

 

cellspacing="0" height="799"

style="border-collapse: collapse; border: 1px solid #000000; margin: 0 auto;" width="815">

 

If you are serious about website design, you may want to start learning some basic HTML and CSS fundementals. They are essential to developing good code so that it works all browsers. Otherwise, chances are that it will not work like you would hope.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...