Extra Header Space and Indent

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Here I am again. :-)

On the same page from my other post, http://bmanak.megavision.com, I have
some extra space at the top and left side of the page. I want it to be flush
with the top and side, like this Microsoft site is. I've messed and messed,
and nothing I do seems to work. It seems that FP mostly just wants me to
change my print settings.

Anyone know how to set my own margins?

Yarrielle
 
Well, I changed my code again, but the space is still there.

I'm not sure how to explain my problem better. There is space above the
picture...Between it and the heading. There is not space in the picture, so
that can't be it. I've changed the code twice as directed here to try and
fix it, and that still didn't work. I have no idea what's causing it, so I
don't know how better to explain it. All I know is that when I look at this
very page, I see that Microsoft's content lies flush with the Explorer bar.
My page won't do that. I'm sorry if I'm missing a way to explain this...All
I can say is what I see. *big shrug*

Yarrielle
--
I know just enough to be dangerous!

Custom Button Badges and Accessories! http://www.manakenterprises.com/bb


Stefan B Rusynko said:
If you mean the space around your image remove the <p> tag from the cell and align the cell and image using their properties

So instead of
<tr>
<td colspan="3" bgcolor="#006600" valign="top">
<p align="center">
<img border="0" src="images/newheader.gif" width="755" height="103"></td>
</tr>

You would have
<tr>
<td colspan="3" bgcolor="#006600" valign="top" align="left"><img border="0" src="images/newheader.gif" width="755" height="103"
align="middle"></td>
</tr>

Otherwise explain your problem better
--




| Thank you for trying, but that didn't work either. :-( I rewrote the code,
| published, and refreshed, but it's still stubbornly keeping that header in
| there. I can't believe I can't figure this out. Any other ideas?
|
| Yarrielle
| --
| I know just enough to be dangerous!
|
| Custom Button Badges and Accessories! http://www.manakenterprises.com/bb
|
|
| "Stefan B Rusynko" wrote:
|
| > You are creating content in a table but are not setting cellspacing="0"
| > (default is 2 or 3 if you don't set it to 0)
| > You have
| > <table border="0" cellpadding="0" style="border-collapse: collapse" width="100%" id="table1">
| > And should have
| > <table border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse" width="100%" id="table1">
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > | Okay, I've tried and tried and tried. Does anyone have any suggestions,
| > | please?
| > |
| > | I have made sure that every margin in every place they're accessible is set
| > | to '0'. I even went so far as to kill my CSS because I read somewhere that
| > | they could add extra margin space. I just spent 2 hrs looking this up again
| > | and still no go. There is absolutely no reason for the extra space. Anyone?
| > | Please? I'd really appreciate it.
| > |
| > | Yarrielle
| > | See this evil problem at http://bmanak.megavision.com
| > | --
| > | I know just enough to be dangerous!
| > |
| > | Custom Button Badges and Accessories! http://www.manakenterprises.com/bb
| > |
| >
| >
| >
 
Your problem is malformed html (table code)
You have in the 2nd row an extra &nbsp;</td>
<tr>
<td width="21%" bgcolor="#006600" height="24">
<td width="57%" bgcolor="#006600" height="24">
<p align="left">&nbsp;<style type="text/css">.awmAnchor {position:relative;z-index:0}</style><span id='awmAnchor-menu'
class='awmAnchor'>&nbsp;</span></td>
&nbsp;</td>
<td width="22%" bgcolor="#006600" height="24">
&nbsp;</td>
</tr>

And just should have
<tr>
<td width="21%" bgcolor="#006600" height="24">
<td width="57%" bgcolor="#006600" height="24">
<p align="left">&nbsp;<style type="text/css">.awmAnchor {position:relative;z-index:0}</style><span id='awmAnchor-menu'
class='awmAnchor'>&nbsp;</span></td>
<td width="22%" bgcolor="#006600" height="24">
&nbsp;</td>
</tr>

--




| Well, I changed my code again, but the space is still there.
|
| I'm not sure how to explain my problem better. There is space above the
| picture...Between it and the heading. There is not space in the picture, so
| that can't be it. I've changed the code twice as directed here to try and
| fix it, and that still didn't work. I have no idea what's causing it, so I
| don't know how better to explain it. All I know is that when I look at this
| very page, I see that Microsoft's content lies flush with the Explorer bar.
| My page won't do that. I'm sorry if I'm missing a way to explain this...All
| I can say is what I see. *big shrug*
|
| Yarrielle
| --
| I know just enough to be dangerous!
|
| Custom Button Badges and Accessories! http://www.manakenterprises.com/bb
|
|
| "Stefan B Rusynko" wrote:
|
| > If you mean the space around your image remove the <p> tag from the cell and align the cell and image using their properties
| >
| > So instead of
| > <tr>
| > <td colspan="3" bgcolor="#006600" valign="top">
| > <p align="center">
| > <img border="0" src="images/newheader.gif" width="755" height="103"></td>
| > </tr>
| >
| > You would have
| > <tr>
| > <td colspan="3" bgcolor="#006600" valign="top" align="left"><img border="0" src="images/newheader.gif" width="755" height="103"
| > align="middle"></td>
| > </tr>
| >
| > Otherwise explain your problem better
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > | Thank you for trying, but that didn't work either. :-( I rewrote the code,
| > | published, and refreshed, but it's still stubbornly keeping that header in
| > | there. I can't believe I can't figure this out. Any other ideas?
| > |
| > | Yarrielle
| > | --
| > | I know just enough to be dangerous!
| > |
| > | Custom Button Badges and Accessories! http://www.manakenterprises.com/bb
| > |
| > |
| > | "Stefan B Rusynko" wrote:
| > |
| > | > You are creating content in a table but are not setting cellspacing="0"
| > | > (default is 2 or 3 if you don't set it to 0)
| > | > You have
| > | > <table border="0" cellpadding="0" style="border-collapse: collapse" width="100%" id="table1">
| > | > And should have
| > | > <table border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse" width="100%" id="table1">
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > _____________________________________________
| > | >
| > | >
| > | > | Okay, I've tried and tried and tried. Does anyone have any suggestions,
| > | > | please?
| > | > |
| > | > | I have made sure that every margin in every place they're accessible is set
| > | > | to '0'. I even went so far as to kill my CSS because I read somewhere that
| > | > | they could add extra margin space. I just spent 2 hrs looking this up again
| > | > | and still no go. There is absolutely no reason for the extra space. Anyone?
| > | > | Please? I'd really appreciate it.
| > | > |
| > | > | Yarrielle
| > | > | See this evil problem at http://bmanak.megavision.com
| > | > | --
| > | > | I know just enough to be dangerous!
| > | > |
| > | > | Custom Button Badges and Accessories! http://www.manakenterprises.com/bb
| > | > |
| > | >
| > | >
| > | >
| >
| >
| >
 
I would like to kiss your feet. Heck, I would even kiss your tush. :-)

Thank you, thank you, thank you!

I never would have found that on my own. I have no clue why FP put it in
there in the first place, but I can sure live with it now that I know how to
fix it.

I very much appreciate your taking the time to help me out on this. Thanks
a LOT!

Yarrielle
Truly dangerous when it comes to code ;-)
--
I know just enough to be dangerous!

Custom Button Badges and Accessories! http://www.manakenterprises.com/bb


Stefan B Rusynko said:
Your problem is malformed html (table code)
<snip>
 
Back
Top