Trouble with liquid layout...

Hi,
I am trying to layout a site with CSS in a liquid style. This
is the first time im using a liquid layout and find it pretty
confusing.... The site is
here. The problem im currently
having is the block of text and image in the main content area (in
white with the guy with the megaphone) looks different in Internet
Explorer and Firefox and i cant work out why this is. Firefox
places it higher up the page and explorer places it lower down the
page....
How can i get them to be the same distance from the top? Any
ideas?
Thanks....

Hello
You should validated your code. I think one of your problems
is that you might have a missing </div> tag. There are one or
two other easily repaired problems highlighted in the validator. I
think the bottom of your page needs to look like this:
<div id="footer">
<ul>
<li><a href="#">home</a></li>
<li><a href="#">about us</a></li>
<li><a href="#">lessons</a></li>
<li><a href="#">contact</a></li>
<li><a href="#">resources</a></li>
</ul>
</div>
</div>
</body>
</html>
If you want your page centered, you're missing margin: 0
auto; in your CSS for #wrapper; like so:
#wrapper {
background-color:#FFFFFF;
max-width:1000px;
min-width:810px;
padding:10px;
text-align:left;
width:90%;
margin: 0 auto;
You need to think whether using relative positioning is a
good idea if you don't need it. If you need to fiddle about with
placement of elements in your page I'd suggest researcing the float
property and the Box Model. There's plenty out there to read.
I add the caveat that I am clinging by my fingernails to the
level slightly above "Novice." I don't use relative positioning for
example, because I don't understand it!
Kind regards
Martin

Similar Messages

  • Sizing confusion with Liquid Layout

    Hello,
    I am attempting my first site. I have read the Dreamweaver CS3 Missing Manual (and done the tutorials), so I have a grasp of Dreamweaver and it's powers, but by no means do I consider myself anything but a beginner.
    I have chosen to create a liquid 2 column layout with header and footer using Adobe's layouts to get a handle on the basics. When it opens, it's default 100% size in DW is 969x530. When I shrink the browser, it shrinks too, which I know is obviously the nature of a liquid layout.
    This is my question: how am I supposed to size my banner and images in Photoshop or Fireworks to fit into this layout if the sizing changes whenever I change my browser size? Do I use the default Adobe gave me and size my images around that, or should I make my document size smaller, say to 795x470 (832x624 maximized)?
    Thanks for any help. This question may seem easy, but it's stopping me continuing on with the site.
    Jen

    You need to make your banner liquid as well, like the other gentleman said.
    What might help to understand how this is done is by looking at websites the have liquid banners. Here's a web site I finished a few weeks ago:
    www.aplusoutdoorcinema.com
    If you right click on the marquee and choose view image, you will see that the main graphic is a fixed size. Then if you right-click on the stars to the right of the marquee and in the menu choose view background image, you will see a graphic of stars. This graphic is repeated diagonally across the banner (repeat-x). I used a min-width to keep the moon from crashing into the marquee (unfortunately, IE6 does not recognize the min-width property).
    Often the background image that repeats across a banner is only 1 pixel wide if its just a color. My background image in the example I gave is wide because I needed a variety of stars
    Here's a simpler example on CSS Zen Garden:
    http://www.csszengarden.com/?cssfile=017/017.css
    If you are not acquainted with CSS Zen Garden, it's a showcase for CSS sites and it also invites anyone to download the XHTML or the CSS. So you can download the css on this site, examine the code, and see how they did it.
    If you read David McFarland's book, you are off to a great start.
    Good luck,
    John

  • Contribute CS3 having problem with liquid layout

    Heya everyone! I'm hoping that someone can help me here. I'm
    trying to make the leap to having layouts done in CSS and not with
    tables.
    Please don't blame me for the design on this one - I didn't
    do it! ;)
    I'm having different issues in two different versions of
    contribute.
    Older versions of contribute won't allow me to edit the text.
    I'm guessing it has something to do with the padding on my left and
    right columns that I had to use in order to get my three column
    layout. Getting rid of that means totally rethinking how I did my
    three column liquid layout to begin with, which isn't my favorite
    option.
    Contribute CS3 WILL let me edit the text in the center
    column. HOORAY!
    HOWEVER! I can edit it for a little while, but if I start
    typing too fast or click it the wrong way the entire DIV reshapes
    itself and is suddenly 10px wide! How bizarre.
    What can I do to make this editable in Contribute? Does
    anyone have a fix to that this is either editable by my client
    (this has to go LIVE to beta on Monday!) OR does someone have a
    three column liquid layout that DOES work in contribute cs3?
    Thanks so much!!!
    check it out here: www.cssdd.org/index.html

    you can see the layout in question at www.cssdd.org - sorry
    for not including it.

  • Problem uploading templates with liquid layouts and dreamweaver cs6

    Hi
    I have developed some templates in Dreamweaver CS6 and Liquid Layouts
    However when I want to preview them in a browser, they come out blank (No Data at all)
    I have tried this without Liquid and works fine, minor bugs that can be fixed like background image not visible
    It seems the problem its at the BC system
    Will appreciate help on this matter
    Thanks

    You should not be using Liquid in product sites, especially in templates since the whole liquid code breaks and does not render in several places.
    DW has no features to support liquid rendering either yet.
    It is something that is in Alpha.

  • Trouble with gridbag layout

    I have been experimenting with this container, but i cant work a couple of things out. I have set the size of my application quite large, 800, 600.
    I am trying to get my end result to look somthing like this
    SWIMMING
    100M 200M 400M
    So i have declared and initialised my components, and then i have done this to put them in the layout.
    GridBagConstraints gridBagConstraintsx01 = new GridBagConstraints();
         gridBagConstraintsx01.gridx = 0;
         gridBagConstraintsx01.gridy = 0;
         gridBagConstraintsx01.insets = new Insets(5,5,5,5);
         cPane.add(lbSwimming, gridBagConstraintsx01);  //JLabel
         GridBagConstraints gridBagConstraintsx02 = new GridBagConstraints();
         gridBagConstraintsx02.gridx = 0;
         gridBagConstraintsx02.insets = new Insets(5,5,5,5);
         gridBagConstraintsx02.gridy = 1;
         gridBagConstraintsx02.gridwidth = 2;
         gridBagConstraintsx02.fill = GridBagConstraints.BOTH;
         cPane.add(eveSwim50M, gridBagConstraintsx02);  //JButton
         GridBagConstraints gridBagConstraintsx03 = new GridBagConstraints();
         gridBagConstraintsx03.gridx = 1;
         gridBagConstraintsx03.insets = new Insets(5,5,5,5);
         gridBagConstraintsx03.gridy = 1;
         gridBagConstraintsx03.gridwidth = 2;
         gridBagConstraintsx03.fill = GridBagConstraints.BOTH;
         cPane.add(eveSwim100M, gridBagConstraintsx03);  //JButton
         GridBagConstraints gridBagConstraintsx04 = new GridBagConstraints();
         gridBagConstraintsx04.gridx = 2;
         gridBagConstraintsx04.insets = new Insets(5,5,5,5);
         gridBagConstraintsx04.gridy = 1;
         gridBagConstraintsx04.gridwidth = 2;
         gridBagConstraintsx04.fill = GridBagConstraints.BOTH;
         cPane.add(eveSwim200M, gridBagConstraintsx04);  //JButtonMy first problem is that everything has been put in the middle of my application, where i was hoping it would start in the top left. I thought that gridx0 and gridy0 would start it from this, but obviously this doesnt seem to be the case. How would i place it in the top left? My second problem is that my buttons are overlapping eachother and have not been seperated. I thought the fill would take care of this but once again it does not seemed to have worked. What would i use to give each button its space? Also, if you can see any improvements i could make, please advise me and i will make them.
    Cheers for the help

    I have changed it to be more like
        lbMulti.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.gridx = 3;
        gridBagConstraints.gridy = 2;
        gridBagConstraints.gridwidth = 7;
        gridBagConstraints.ipadx = 36;
        gridBagConstraints.ipady = 6;
        gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTHWEST;
        gridBagConstraints.insets = new java.awt.Insets(27, 27, 0, 0);
        getContentPane().add(lbMulti, gridBagConstraints);Getting closer to what i need, but i am going to take your advise and steer clear of gridbag, way too over the top. The only problem is that i cant really find another layout that will layout the way i want it too. I am checking in netbeans how each layout will look. If you can advise me what layout you prefere to use and then i could see if i could redesign my dialog around this.
    cheers

  • Trouble with  iTunes layout

    I recently just purchased a cd and I'm having trouble putting it on to my iPad / iPod  probably due to the fact that I haven't used it in awhile, but the disk has been ripped to iTunes successfully but I'm lost at that step, whould any one be so kind to help me in this matter?

    It goes onto your iPod the same way that the music you previously put on it did. So how did you do that?
    The various options include:
    Sync - you connect the iPod to your computer, iTunes sees it and Synchronises the iPod with iTunes (makes sure they are both the same).
    Sync selected Playlists, albums and artists etc. - you choose which Playlists, albums, artists etc. are added to the iPod when it Syncs
    Manually Manage - you have to drag songs etc from the iTunes Library onto your iPod.
    If you connect the iPod to iTunes, a "Device" should appear, either on the left side of iTunes:
    or as a small iPod button on the top right of iTunes:
    Look on the Device/Music pane and check which choices you have previously set up.

  • Help with spry menu bar in liquid layout

    I need help getting a spry menu bar with a 6-item list to stay in place in a liquid layout.  Trying to get it horizontally under the header image.  I am new to web design (new to html and code: reading books, searching web, and doing tutorials for many hours now), using CS4, working on a mac.  You can view my trial page on cc-tn.com.  I would appreciate any help offered!

    Problem stems from the fact that your page is looking for files contained on your local hard drive instead of the web site.
    <script src="file:///Macintosh HD/Users/Allison/CC Web/Templates/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="file:///Macintosh HD/Users/Allison/CC Web/Templates/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    In addition, the links to PDF files are pointing to your local hard drive.
    p><a href="file:///Macintosh HD/Users/Allison/CC Web/Documents/Foundations_one-page_green.pdf">Foundations</a> is a grammar-stage program for students K4 through sixth grade. Parents attend morning classes with their children as trained tutors model the tools of learning facts from a variety of interesting subjects. Students also participate in  science and fine arts projects and practice public speaking each week.</p>
        <p><a href="file:///Macintosh HD/Users/Allison/CC Web/Documents/Essentials-One-page.pdf">Essentials</a> is a dialectic-stage program for students in third through sixth grade. Trained tutors model the dialectic tools of learning in English grammar, writing, and math drills. Emphasis is placed on the development of writing skills that will enable students to become effective communicators through the written word. Classes meet in the afternoon following lunch.</p>
        <p><a href="file:///Macintosh HD/Users/Allison/CC Web/Documents/Challenge_one-page.pdf">Challenge A &amp; B</a> are dialectic-stage programs for seventh and eighth graders. Emphasis is placed on group discussion as students become more independent learners. Students focus on logic and debate.</p>
    Did you define a local site folder in DW before you began this project?  Without this critical first step, DW cannot correctly manage assets for you.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Liquid Layout does not work with extreme long pages

    (Solution at the end)
    Hi there.
    I have a layout for iPad with a width of 1024 and variable height.
    I now need an alternative layout for iPad HD. So I try to use liquid layout to alternate my layout to 2048 width and height x 2.
    The maximum size in InDesign is 15552px. So I managed to get all my SD layouts below 7776px.
    to sum things up:
    iPad SD: 1024x7776
    transform into
    iPad HD: 2048x15552
    Problem is, in this case the option to scale everything automatically gets completely ignored.
    Another layout, which uses only text and no images, boxes or multimedia gets transformed correctly.
    Does anybody have a tip for me how I can work around it?
    Thanks in advance.
    p.s.: Adobe, please increase the maximum sizes for documents
    Solution:
    Aaaand I just got it. Specify a new preset for your document-sizes: 2048x15552. Now if you use the page tool just click the new (in my case) "iPad HD" and choose liquid layout: scale.
    Works like a charm

    I am using Automator to find files with the .pages
    extension and then copy them to another folder, which
    lists the copied Pages files by name but with Zero
    KB! The files will not open - error: the index.xml
    file is missing.
    Any ideas on how to get a Pages file to copy with
    Automator?
    Hi Kurt
    To answer the title of your message: no, Pages does not work with Automator.
    But that's not really what you're asking. You really want to know how to copy Pages documents using Automator.
    To help you we need to know what Actions you're using in Automator and the parameters you're using eg the Filter Finder Items action (using a pages file extension) and the Copy Finder Items actions. Pls let us know how you're doing this and we'll try to help.
    Thanks.

  • Need assistance with a liquid layout

    Hi,
    I made some posts yesterday about a liquid layout. I got a couple tutorials to go with but Im pretty lost. I designed my index page and now I need  hand turning into a liquid layout. I have a very wide bg image, can it still be done with that? Also, I would like the building in the bottom right corner to stay in that position (to match up with the sun rays). Any help would be much appreciated.
    Thanks in advance
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Hurry Print Imaging</title>
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="background">
    <div id="col1"> </div>
    <div id="col2"><div id="logodiv" align="center"><img src="images/logo.png" alt="HurryPrint" longdesc="index.html" />
    <div id="logotabdiv"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Location','','images/Location-DOWN.png',1)"><img src="images/Location-UP.png" width="85" name="Location" /></a> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Equipment','','images/Equipment-UP.png',1)"><img src="images/Equipment-DOWN.png" width="85" name="Equipment" /></a> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Services','','images/Services-UP.png',1)"><img src="images/Services-DOWN.png" width="85" name="Services" /></a> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('History','','images/History-UP.png',1)"><img src="images/History-DOWN.png" width="85" name="History" /></a></div>
    <div id="maincontenttabs"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Newsletters','','images/location/newsletters-UP.png',1)"><img src="images/location/newsletters-DOWN.png" alt="Inkjet" width="75" height="16" name="Newsletters" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Floorplan','','images/location/floorplan-UP.png',1)"><img src="images/location/floorplan-DOWN.png" alt="Colour" width="75" height="16" name="Floorplan" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Map','','images/location/map-UP.png',1)"><img src="images/location/map-DOWN.png" alt="Binding" width="75" height="16" name="Map" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Contact','','images/location/contact-UP.png',1)"><img src="images/location/contact-DOWN.png" alt="Docutech" width="75" height="16" name="Contact" /></a></div>
    <div id="maincontent">
    <br /><br />
    <img src="images/hp-header.png" alt="HurryPrint" />
    <br />
    <p>Hurryprint has been upholding a longstanding family tradition for the last two decades by being a leader in providing innovative, quality printing. Owned and operated by Jamie Hurley since 1981, Hurryprint has earned a reputation for producing high quality work with quick and efficient turnaround.
    At Hurryprint, we look forward to the future with enthusiasm, and eagerly anticipate providing our customers access to the most up-to-date electronic printing equipment. We are confident in our ability to supply our customers with the highest quality output available for their documents. By providing the necessary information and resources to facilitate digital file transfer, we will be constantly helping our clients to find new ways to express their thoughts and ideas in bold and creative ways.</p>
    <img src="images/future-text.png" alt="At Hurry Print, the future is exciting" /> </div>
    </div>
    </div>
    <div id="col3"><div class="buildingdiv"> </div>
    </div>
    <div id="footer"><img src="images/footertext.png" alt="Footer Text" /></div>
    </div>
    </body>
    </html>
    body {
        background-color:#32b8d3;
        margin:auto;
    img {
        border:none;
    #background {
        margin: auto;
        background-image:url(../images/bg.jpg);
        background-repeat:no-repeat;
        width:1024px;
        height:621px;
        border:#FFFFFF 2px solid;
    #col1
        float: left;
        width: 20%;
        margin-left: 4%;
    #col2
        float: left;
        width: 46%;
        margin-left: 4%;
    #col3
        float: left;
        width: 20%;
        margin-left: 4%;
    .buildingdiv {
        background-image:url(../images/building.png);
        width:196px;
        height:107px;
        margin-left:-30px;
        margin-top:410px;
    #logodiv {
        position:relative; /* take out if needed */
        z-index:1;
    #logotabdiv {
        margin-top:-15px;
        position:relative;
        z-index:-1;
    #maincontenttabs {
        margin-top:20px;   
    #maincontent {
        margin-top:-5px;
        background-image:url(../images/blue-box.png);
        width:396px;
        height:351px;
        background-repeat:no-repeat;
        font-family:Arial, Helvetica, sans-serif;
        font-size:9pt;
        color:#0a3f8f;
    #maincontent p {
        padding-left:10px;
        padding-right:10px;
    #footer
        clear:both;
        margin-top:85px;
        text-align:right;
        float:right;
    h2, p
        margin-left: 7px;
        margin-right: 7px;

    Hey guys, I still need some help with my layout if anyone is willing. My code stands as it did yesterday. Didnt make any ground last night. Im starting to wonder if liquid layout is even the way to go. Thanks again in advance
    body {
        background-color:#32b8d3;
        margin:auto;
        max-width:64.00em;
        max-height:38.81em;
    img {
        border:none;
    #background {
        /*margin: auto;*/
        background-image:url(../images/bg.jpg);
        background-repeat:no-repeat;
        width:1024px;
        height:621px;
        border:#FFFFFF 2px solid;
        bottom:15%;
        right:15%;   
    #col1
        float: left;
        width: 20%;
        margin-left: 4%;
    #col2
        float: left;
        width: 46%;
        margin-left: 4%;
    #col3
        float: left;
        width: 20%;
        margin-left: 4%;
    .buildingdiv {
        background-image:url(../images/building.png);
        width:196px;
        height:107px;
        margin-left:-15%;
        margin-top:201%;
    #logodiv {
        position:relative; /* take out if needed */
        z-index:1;
    #logotabdiv {
        margin-top:-3%;
        position:relative;
        z-index:-1;
    #maincontenttabs {
        margin-top:5%;   
    #maincontent {
        margin-top:-1%;
        background-image:url(../images/blue-box.png);
        width:396px;
        height:351px;
        background-repeat:no-repeat;
        font-family:Arial, Helvetica, sans-serif;
        font-size:9pt;
        color:#0a3f8f;
    #maincontent p {
        padding-left:3%;
        padding-right:3%;
    #footer
        clear:both;
        margin-top:8%;
        text-align:right;
        float:right;
    body>
    <div id="background">
    <div id="col1"> </div>
    <div id="col2"><div id="logodiv" align="center"><img src="images/logo.png" alt="HurryPrint" longdesc="index.html" />
    <div id="logotabdiv"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Location','','images/Location-DOWN.png',1)"><img src="images/Location-UP.png" width="85" name="Location" /></a> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Equipment','','images/Equipment-UP.png',1)"><img src="images/Equipment-DOWN.png" width="85" name="Equipment" /></a> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Services','','images/Services-UP.png',1)"><img src="images/Services-DOWN.png" width="85" name="Services" /></a> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('History','','images/History-UP.png',1)"><img src="images/History-DOWN.png" width="85" name="History" /></a></div>
    <div id="maincontenttabs"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Newsletters','','images/location/newsletters-UP.png',1)"><img src="images/location/newsletters-DOWN.png" alt="Inkjet" width="75" height="16" name="Newsletters" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Floorplan','','images/location/floorplan-UP.png',1)"><img src="images/location/floorplan-DOWN.png" alt="Colour" width="75" height="16" name="Floorplan" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Map','','images/location/map-UP.png',1)"><img src="images/location/map-DOWN.png" alt="Binding" width="75" height="16" name="Map" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Contact','','images/location/contact-UP.png',1)"><img src="images/location/contact-DOWN.png" alt="Docutech" width="75" height="16" name="Contact" /></a></div>
    <div id="maincontent">
    <br /><br />
    <img src="images/hp-header.png" alt="HurryPrint" />
    <br />
    <p>Hurryprint has been upholding a longstanding family tradition for the last two decades by being a leader in providing innovative, quality printing. Owned and operated by Jamie Hurley since 1981, Hurryprint has earned a reputation for producing high quality work with quick and efficient turnaround.</p>
    <img src="images/future-text.png" alt="At Hurry Print, the future is exciting" /> </div>
    </div>
    </div>
    <div id="col3"><div class="buildingdiv"> </div>
    </div>
    <div id="footer"><img src="images/footertext.png" alt="Footer Text" /></div>
    </div>
    </body>
    </html>

  • How do I create a Full Width Photo for a Liquid Layout - CS3

    Greetings & Help!
    I'm trying to create a full width photo layout without the
    photo's being tall.
    Exactly as the following websites - which all seem to be
    using the same size of photo or very close to it.
    This site is static with full width photos that are not tall.
    http://www.jenniferhandyproperties.com/selling
    This site is static for the most part and full width photos
    that are not tall
    http://www.gnvpartners.com/web/
    This site is Flash with full width photos that are not tall.
    expodesigncenter
    I would love to create a flash site just like expo but at
    this point I would settle for a static photo with the same size
    being the same on each page.
    Also I would like my site to be a liquid layout so the photo
    and everything else (text, Links etc) on the page flows correctly.
    The problem...
    I'm trying to use photo's from Istockphoto.com. The size of
    the photo's they offer are
    425 x 282 px (5.9" x 3.9")
    849 x 565 px (11.8" x 7.8")
    1698 x 1131 px (5.7" x 3.8")
    I'm selecting horizontal photo's. I do not know how to match
    the same width, height and appearence as the websites I mentioned
    above.
    If I choose a photo that fits the width then the length is
    too long. Also if I choose a large photo and have to crop it then
    most of the detail of the photo is lost.
    I'm attempting to create a mock-up for my web in Fireworks
    CS3 and after search Adobe and www I came across the mock up should
    be 1004px which would end up being 1024 with vertical scroll bar
    and small margins.
    I also have Photoshop & Flash CS3 but should mention (if
    you haven't already guess it by now) I am a rookie when it comes to
    creating a website.
    So if you can offer a solution in "Non-Tech Terms" I would
    appreciate it.
    Thank you in advance for your time.

    Greetings & Help!
    I'm trying to create a full width photo layout without the
    photo's being tall.
    Exactly as the following websites - which all seem to be
    using the same size of photo or very close to it.
    This site is static with full width photos that are not tall.
    http://www.jenniferhandyproperties.com/selling
    This site is static for the most part and full width photos
    that are not tall
    http://www.gnvpartners.com/web/
    This site is Flash with full width photos that are not tall.
    expodesigncenter
    I would love to create a flash site just like expo but at
    this point I would settle for a static photo with the same size
    being the same on each page.
    Also I would like my site to be a liquid layout so the photo
    and everything else (text, Links etc) on the page flows correctly.
    The problem...
    I'm trying to use photo's from Istockphoto.com. The size of
    the photo's they offer are
    425 x 282 px (5.9" x 3.9")
    849 x 565 px (11.8" x 7.8")
    1698 x 1131 px (5.7" x 3.8")
    I'm selecting horizontal photo's. I do not know how to match
    the same width, height and appearence as the websites I mentioned
    above.
    If I choose a photo that fits the width then the length is
    too long. Also if I choose a large photo and have to crop it then
    most of the detail of the photo is lost.
    I'm attempting to create a mock-up for my web in Fireworks
    CS3 and after search Adobe and www I came across the mock up should
    be 1004px which would end up being 1024 with vertical scroll bar
    and small margins.
    I also have Photoshop & Flash CS3 but should mention (if
    you haven't already guess it by now) I am a rookie when it comes to
    creating a website.
    So if you can offer a solution in "Non-Tech Terms" I would
    appreciate it.
    Thank you in advance for your time.

  • The updated iPhoto program is cumbersome.  I am trying to create a Christmas card and can't figure out how to get the fold of the card on the left and not on the top of the card.  I had no trouble with this for the past two years.  Can someone help?

    The updated iPhoto program is cumbersome.  I am trying to create a Christmas card and can't figure out how to get the fold of the card on the left and not on the top of the card.  I had no trouble with this for the past two years.  Can someone help?

    Click on the Layout button lower right and choose a Vertical lyout from the dropdown

  • I am really in trouble with AP Div-How do I fix it on the web?

    Hi,
    I am really in trouble with my website. I have added some pictures and text on top of Fireworks Image and have published it on the website.
    But the concern is, when I zoom in & zoom out, I can see the previous text on the screen and also the picture and texts I have added using Ap Div  tag are scattered moving all to the left when I zoom out. Can someone help me how to fix this in one particular place so that it doesn't move when I zoom in or zoom out!!! I am using Adobe Dreamweaver CS3, if this will help.
    Appreciate your sincere help on this.
    Thanks in advance.

    Frankly, there's a lot that is wrong with that page:
    1. Most of your content is in the images - this means that you will get very poor search engine ranking
    2. Your extensive use of absolute positioning for layout - this means that when you enlarge the text size in the browser, you will have overflow problems on the page (for example, the terrible problems at the bottom of the page)
    3. You have used tables for layout - this is because of your use of Fireworks to create the HTML
    Each of these problems is solvable but none of them are solvable easily without a redesign of the page. A web page should be built from the top down, stacking content containers (i.e., <div>, <section>, <article>, <aside>, etc.) vertically or floating them horizontally or both. These containers would be loaded with the text content of the page, and images would be used only for cosmetic appearance. Using CSS to style/locate the content will allow you to completely move away from tables for layout. Most typical pages can be created without the use of absolute positioning which should be used only for special purposes, not for layout of the page elements.

  • FAQ: How can I make my Flash Catalyst application scale/use a liquid layout?

    Flash Catalyst CS5 currently only supports applications with fixed dimensions. Custom components you create in Catalyst have absolute sizing.
    If you want to experiment with creating resizable applications (liquid layouts) and components in a preview of the next version of Flash Catalyst, codenamed "Panini",  you can find more information here:
    Introducing Adobe Flash Catalyst "Panini"
    Download Adobe Flash Catalyst "Panini"
    Adobe Flash Catalyst "Panini" help
    Keep in mind that Flash Catalyst "Panini" preview is meant for exploration and testing, not real production. If you are doing real production work, here are some options that work with Flash Catalyst CS5 and Flash Builder:
    Liquid Layouts
    If you are building an application that requires relative constraints, you can take the FXP file from Flash Catalyst into Flash Builder, and apply constraints there so that your components resize according to your application dimensions.
    For more info, see this Help topic:
    Using constraint-based layouts in Flash Builder
    SWF Scaling
    If you want your swf to scale, without relative constraints, there's a simple way to make that work in Builder as well. Simply save out your FXP file from Flash Catalyst and import it into Flash Builder. Open up the "Main.mxml" file. Remove the width and height attributes on the Application tag, and add the attribute:
    preinitialize="systemManager.stage.scaleMode='showAll'
    The entire Application tag should look something like:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:d="http://ns.adobe.com/fxg/2008/dt"
                      xmlns:fc="http://ns.adobe.com/flashcatalyst/2009"
                      xmlns:ATE="http://ns.adobe.com/ate/2009"
                      xmlns:ai="http://ns.adobe.com/ai/2009"
                      xmlns:flm="http://ns.adobe.com/flame/2008"
                      xmlns:lib="assets.graphics.*"
                      xmlns:components="components.*"
                      backgroundColor="#FFFFFF"
                      preloaderChromeColor="#FFFFFF"
                      preinitialize="systemManager.stage.scaleMode='showAll'"
                      >
    There are a couple other scale modes you may want to try, such as "exactFit", which are outlined at the below link:
    Flash Stage Scale Modes
    Finally, you will have to adjust the object embed code in your html page to set the size of your swf.
    Original discussion here

    you can`t. allow your application internet access without the network admin defining an exception for it specifically.
    If you have admin rights use the router`s/proxy`y configuration software to allow an exception.

  • Iphone 5 trouble with charging, please help?

         Haven't had my iPhone for long (around November for my birthday) and for about the last couple of weeks recently I have had major trouble with the battery charge.
         At first I thought it was the cables, so I got new one after new one and they'd work but then stop working. Until the last one I just purchased, it pretty much stopped charging the phone straight away. No lightening or sound response, no connection via computer etc. So, when my charge ran out I still had it plugged into my computer and now my phone only chargers when it's off when it's plugged into a USB port (bear in mind, it doesn't connect to iTunes-it says USB is unrecognized although it still chargers the phone when off). However, it charges fairly quickly when off but when in use the charge diminishes just as quick as it takes to charge. Not only that but now whenever I wish to turn my iPhone off, it turns itself back on.
          I have recently sent off my phone to the Apple store to have it checked over and it came back to me saying they couldn't reproduce the symptons I had mentioned so there was me thinking everything was fine but nope, still faulty. So a bit disappointed with paying £7.00 for delivery to have nothing been done about it (not only that, but the phone as also out of charge when returned so it just seemed like my phone wasn't looked over one bit). Also a bit disappointed and annoyed at the fact I'm still paying for my monthly contract for the phone when I am unable to use it!!!
         I haven't damaged the phone (it basically looks brand new) and haven't exposed it to any liquids. The USB port on my phone where I charge it seems clear too.
          The annoyance of having to send it back to Apple costing me more money is offputting so does anyone have any other suggestions? I'm going to my local 3 store to see if they can help me out but I'm just a bit fed up now. Can see this is a popular problem amongst other iPhone users too.
    Many thanks!
    (Oh and need to add I HAVE updated everything on my phone, restored everything, restarted etc.)

    Yeah I went to the 3 store and they said that it costs if they find it's a software issue (which I believe isn't fair). However, after sending mine off and having it back exactly the same I headed off to the 3 store and asked to see what they could do for me. Of course, they can't touch Apple phones so they kindly phoned Apple again for me to only say that Apple have NO record of me even sending my phone off even though I have written and e-mail proof. They then said that they replaced my phone in which they didn't. So I spoke to the senior supervisor who said for me to send it off again (yawn) but to be replaced and if it doesn't then I have to e-mail her directly. It's such an annoying issue because I'm still paying for my phone when I can't even use it.
    My advice is, definitely go to the store. Even-though they can't actually replace it there and then or send it off themselves to be repaired but they (should) phone up Apple and help you further. Apple shouldn't be asking you for such an upfront cost without even looking at your phone as it could be another issue.
    That's me up to date. Sending it off tomorrow, hopefully receive a replaced working phone now.

  • Liquid Layout - aspect ratio of background

    I am working on a new site with a liquid layout and I havent been able to find a way to keep the aspect ratio correct with the different sizes.
    I wish it was as simple as
    bgimg1._width = Stage.width;
    bgimg1._height = Stage.height;
    the image size im working with is 990x600 for a 1024 display.
    I would like the image to be centered and never to have empty area, so if it needs to it would strech past the sides. Any help is really appriecated.
    Thanks,
    Randy

    when you create the symbol, make sure that 0,0 is not the top left, but the center.  for example in your case, the location of this image symbol would be -495 for x, and -300 for y coordinates.
    Now that the image symbol is centered for itself, it is now time to center it on the stage.  You can do that be finding out the center of the stage which is half of that.
    Now you can set the coordinates of the symbol equal to the center of stage.
    example, myPic.x = Stage.width/2.
    Great, the symbol is now always centered.  But how to make it scale?  It depends on how you want it to scale.  Scale when resizing the webpage, or just scale to fit once?
    If it is just to scale to fit once, you can just play with the values until it fills the screen by setting myPic.scaleX = 1.2; //or greater. Have to do scaleY too.
    If you are trying to make the background scale dynamically, you would first need to create a listener that will detect the change of the stage.
    Inside that change handler, you can set the scale of the symbol based on how much the stage has changed.  The stage would only change if the html wrapped around it is set to scale.
    Hope this helps.

Maybe you are looking for

  • How to change my name on my iCloud email address

    Hi! I need some help I am trying to figure out why whenever I send an email, it has someone else's name on it. So other people think that it is someone else emailing them, I can't find the option to change your name in mail prefrences, it was greyed

  • How to make a Compliant to Adobe

    Hello I'm sure this is in the wrong place, but hopefully someone will be able to help. How on earth do you complain to Adobe? Most websites have a complaints section or an email address - all i've found with adobe was a link to a PDF that includes an

  • Need help connecting laptop via ethernet connectio...

    can anyone help me connect my laptop to the bt homehub via ethernet. i have my xbox 360 in port 1 and that works flawlessly i am trying to connect my laptop to the second port but i cant connect. dont think i am using correct settings. if someone cou

  • How many Threads on a given system ?

    Is there a way to know for an AIR application how many threads a given system system supports? Pixel Bender is capable of real multi threading. It would not make sense to run 4 instances on a system with only 2 threads, but would be a shame not to ut

  • What's different function between Webi on InfoView and Webi Rich Client?

    My interest on Webi XI 3.1 version Please details of describes on both of them. Thanks,