Ask a Question related to Macromedia Fireworks, Design and Development.
-
Binci webforumsuser@macromedia.com #1
Canvas Border
Hi there
I have just completed a page in Fireworks and exported as HTML. When i preview the page in Fireworks (F12) it seems to view fine but when i open the HTML file from a browser it does not fully adjust to the width of the screen i.e. there is white space on the left and top of the screen - how do i get rid of this so that the page adjusts to the full size of the screen??
Binci.
Binci webforumsuser@macromedia.com Guest
-
Canvas and Panels
This code is working but still have one small problem and i would be happy if i get help with that. when i change the tab nav (click on a Canvas) i... -
createMenu() on a Canvas
Hi All, I'm looking for how to create a Menu on a Canvas, but Application. I wrote following codes, as you can see, I'm aiming to create... -
rotating the canvas
Hi I can't find an answer for this - is it possible to flip/rotate the orientation of the whole canvas. Cheers LAtchet -
Canvas Equivalents?
"Bill Schuhle" <bschuhle1@aol.com> wrote in message news:c4d6m8$f5k$1@forums.macromedia.com... I've been issuing the same gripes for years. ... -
umm how do you fix the zoom on canvas?!?!
I have never been able to figure out how to set the size % of my canvas. On the bottom its says 100% then 66% what if I want 80% ?? Is there a... -
Anthony MMTS #2
Re: Canvas Border
Hello,
If you are using Dreamweaver as your HTML editor, all you need do is choose
Modify > Page Properties, and type 0's into each of the margin setting
boxes.
or the workaround of Murray...
Link to an external stylesheet (using DW's CSS editor), or embed a
stylesheet in your code (between <head> and </head>) with the following
style in it (embedded shown for cut-n-paste convenience) (assuming you want
zero margins) -
<style type="text/css">
<!--
body { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left:
0px; padding:0px; }
-->
</style>
you could also try
body { margin : 0px 0px 0px 0px; padding:0px; }
or
body { margin : 0px; padding:0px; }
as a shorthand method.
This will take care of the margins in IE4+ and NN6. To take care of NN4x,
you will need to use MODIFY | Page Properties... and set the two right hand
margin fields (marginwidth and marginheight) to 0.
Since you are still using inline margin specs in the body tag, this method
won't validate either. To get completely valid code that works for all
browsers, change you stylesheet as shown below -
body {
padding: 0;
margin: -10px 0 0 -10px;
/*/*/margin: 0 0 0 0; /* */
}
I hope this helps.
Anthony F. Dugenia
Technical Support Specialist
Macromedia Technical Support
To search for TechNotes and other issues use;
[url]http://www.macromedia.com/support/search/[/url]
"Binci" <webforumsuser@macromedia.com> wrote in message
news:bk50dt$rae$1@forums.macromedia.com...preview the page in Fireworks (F12) it seems to view fine but when i open> Hi there
>
> I have just completed a page in Fireworks and exported as HTML. When i
the HTML file from a browser it does not fully adjust to the width of the
screen i.e. there is white space on the left and top of the screen - how do
i get rid of this so that the page adjusts to the full size of the screen??>
> Binci.
>
>
Anthony MMTS Guest
-



Reply With Quote


