Make the whole page fit to browser width

Hey Everyone,
I am making a site for a friend and for the life of me I cannot make the entire site fit to browser width - you can see the homepage here - http://www.dmofilms.com/blacklabelweddingfilmsTEST/
All I want is the entire site to always fit the screen. I have looked up the header/footer tutorial and read another thread on this but still cannot figure it out.
Any suggestions?
Thanks so much!
-Matt

Hey Matt,
I am not sure what you are wanting? Do you want to know how to get the header and footer to fill the width of the browser screen? I am getting horizontal scroll when I veiw your site on my macbook so I am guessing you are making your website quite wide.
I am guessing your header and footer have a really large width because you want that style to span the width of all browser.
Here is what you might want to try. I notice you have a center graphic for your header and footer, then it fades to black with a white line going across. You will need to separate that center graphic from the black banner with the white line. Then save that black banner as a png, make it so it will tile seemlessly horizontally. Then use the box tool and make a rectangle that connects to the ends of the canvas area on Muse in the header and footer. Now you will bring both center graphic for you header and footer and place them over top of the seemless banner. This will allow your header and footer to span width.
Before you do that though you will want to make your canvas area smaller, 960px is still pretty common for websites.
I hope that helps.
PS. Your site looks very well done so far. When you finish I would recommend submitting it to 'site of the day'.

Similar Messages

  • Can i make the whole page as editable region

    Hi
    can i make the whole page as editable region to avoid the warning messages appears when a code generated outside te html tag?
    thanks in advance.

    If you make the whole page editable, there would be no reason to use the DW template feature  :-)
    Message was edited by: Murray *ACE*

  • How to keep the whole page open during browsing

    I am trying to work out how to keep the whole page open in Safari i.e. the top most line with the Apple logo, file, edit, view etc. whilst browsing.  What is the setting to achieve this ?  Since installing Yosemite my MBP 2011 with SSD is behaving oddly at times. Where is the "back" when in Support Communities or is going into the history tab the only way ?
    thanks

    When in the ASC pages, my method involves opening separate windows.
    So I can go back to the reference page from where I first visited a thread.
    Also, pages open faster at times into a new window instead of a tab. As
    my setup has a bit more display than necessary, a few extra windows are
    easier than a bunch of tabs in one frame that have no point of reference.
    Plus, if I wish to copy/paste or drag into another window, or access extra
    content for the sake of reference, I have that; & may use another browser.
    For some content, different browsers may be a preference. I'm used to more
    than two, and one of three becomes more dedicated to things like web mail.
    There may be some options in launchpad items, such as they are.
    Mission Control can access other hidden windows. There's a short
    cut for Full Screen that when used again, reverts to previous size.
    Not sure if this gets near your question, but thought I'd put it out here anyway.
    edited

  • How can I take a screen shot of the whole page in iweb

    Hello all, Happy Saturday.
    I want to take a screenshot of my entire page but I only see a part of the page on the screen. How can I display the whole page at once in order to make a thumbnail image?
    Thank you in advance for I know someone will have the solution.
    Mireille

    Well, let me see here....on page 114 of the L3 handbook it says specifically that I'm not supposed to share this with L2s and below....hahahaha....just kidding. Actually, I'm sure that this kind of graphic posting is frowned upon here, but I just couldn't resist...
    Here's the code to do this sort of thing...
    {a href="http://www.dirtdoog.com" target="_blank">{img src="http://homepage.mac.com/jwtseng/MyWorld.jpg" width=200 title="Click to visit My World!">{/a>
    Replace all the "{" with "<" and you'll be set to go...

  • Refresh the whole page in one case in SPRY

    I have created login page in php, Using spry i posted the
    form in same page,getting response in div section i.e. <div
    id="response_form1" align="center"></div>
    when i supply wrong password the form submitted and error
    message appeared in <div id="response_form1"
    align="center"></div>.
    Now my question is that how can i achieve the whole page to
    be refreshed when i successfully authenticated.
    In other words
    i want the whole page to be changed in one case (redirect the
    whole page).
    and in other case response will be getting in DIV (Not whole
    page will be updated/posted).
    code of Login_ajax.php file is given below .
    login_form.php
    <?
    if(count($_POST)>0){
    $usrname=$_REQUEST['usrname'];
    $pass=$_REQUEST['pass'];
    $cmdlogin=$_REQUEST['cmdlogin'];
    //echo $usrname."<br>".$pass;
    if (file_exists('adm.os')) {
    $lines = file('adm.os');
    for($i=0;$i<count($lines);$i++){
    $auth=explode('||',$lines[$i]);
    $key=array_search($usrname,$auth);
    if(!is_int($key)){
    $msg = "<b>Error : <font color=Red>Username /
    Password not exists or correct ...</font></b>";
    }else if($auth[0]==$usrname &&
    $auth[1]==md5($pass)){
    header("Location: new.php");
    }else{
    $msg = "<b>Error : <font color=Red>Username /
    Password not exists or correct ...</font></b>";
    } else {
    $msg = "<b>Error : <font color=red>The file
    $filename does not exist</font></b>";
    echo $msg;
    }else{
    ?>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <link href="css/samples.css" rel="stylesheet"
    type="text/css" />
    <style type="text/css">
    .product {
    cursor: pointer;
    .hover {
    background-color: #FFFFCC !important;
    .selected {
    background-color: #CCCCCC;
    .style6 {font-size: 14px}
    .style7 {font-size: 12px}
    </style>
    <script src="js/xpath.js"
    type="text/javascript"></script>
    <script src="js/SpryData.js"
    type="text/javascript"></script>
    <script src="js/SpryUtils.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    // Callback function that will update the response_form1 div
    with the response that comes from the server
    function updateResponseDiv(req)
    Spry.Utils.setInnerHTML('response_form1',
    req.xhRequest.responseText);
    //-->
    </script></head>
    <body>
    <table width="100%" height="100%" border="0"
    align="center" cellpadding="0" cellspacing="0">
    <tr><td>
    <form name="form1" method="post" action="login_ajax.php"
    onSubmit="return Spry.Utils.submitForm(this,
    updateResponseDiv)">
    <table width="30%" border="0" align="center"
    cellpadding="0" cellspacing="0">
    <tr>
    <td height="25" colspan="2"> </td>
    </tr>
    <tr>
    <td height="25" colspan="2"><span class="style5
    style6"><strong>Administrator
    Login</strong></span></td>
    </tr>
    <tr>
    <td width="40%" height="25"><div align="right"
    class="style5 style7"><strong>Username
    :</strong></div></td>
    <td width="60%" height="25"><input type="text"
    name="usrname" id="usrname"></td>
    </tr>
    <tr>
    <td height="25"><div align="right" class="style5
    style7"><strong>Passwd
    :</strong></div></td>
    <td height="25"><input type="password" name="pass"
    id="pass"></td>
    </tr>
    <tr>
    <td height="25" colspan="2"><label
    for="cmdlogin"></label>
    <div align="center">
    <input type="submit" name="cmdlogin" id="cmdlogin"
    value="Login">
    </div></td>
    </tr>
    </table>
    </form>
    <div id="response_form1" align="center"></div>
    </td></tr>
    </table>
    </body>
    </html>
    <?}?>
    end login_ajax.php
    --------------------------------------------------------------

    quote:
    Originally posted by:
    NAVISD
    One embiguity i have your alteration to code makes sense but
    can you please clear me how PHP header("Location : new.php"); &
    $msg=true; communicate to javascript response function you have
    mentioned?
    Good point. It actually doesnt .. thats why it wouldnt work.
    I mixed the wrong functions with each other.
    Lemme think of someting..
    Found something, lemme edit
    First, U need to update your setInnerHTML function of
    SpryData with this:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1306334&enterthread=y
    So just copy paste it over the old innerHTML function
    This function allows u to fireup javascripts true
    setInnerHTML..
    Than change this php code to:
    }else if($auth[0]==$usrname && $auth[1]==md5($pass)){
    header("Location: new.php");
    }else{
    TO:
    }else if($auth[0]==$usrname && $auth[1]==md5($pass)){
    $msg = "<script language="javascript"
    type="text/javascript">window.location="new.php";</script>";
    }else{
    What this basicly will do.. Is add the script inside the div.
    and executes it.. Seems a wierd work a round but it could work
    ^_^

  • How can I put a colored border around the whole page?

    I just want to know how to pur a colored border around the whole page?

    Hi Rachel,
    Here's an example. Instructions follow the image:
    Start with a new, Blank word processing document.
    Insert a rectangle shape (the darker green is the default colour)
    Change the colour to your desired border colour, using the Fill Color well in the format bar.
    Set the Stroke to none, using the first popup menu on the Format bar. (I missed this step in the example, leaving the black line seen at the rigth edge of the pages.)
    Drag the handles to resize to shape to cover the whole page.
    Go to the View menu and choose Show Layout to see thae area that text will occupy.
    Insert a second rectangle shape on the page.
    Set its Fill colour to whatever bckground colour you want in the text area,
    Set the Stroke to none.
    Resize the second shape to fit just outside the text area indicated on the Layout.
    Select both shapes, then go Arrange > Group.
    Go Arrange > Move Object to Background.
    Go Format > Advanced > Move Object to Section Master.
    If either of:
    Go Arrange > Make Background Objects Selectable
    Go Format > Advanced > Make Maste Objects Selectable
    have checkmarks beside them,
    Select that item to uncheck it.
    The frame will now appear on every page in the section.
    Regards,
    Barry

  • Can't print a graph on the whole page in landscape

    Hello!
    I have XY graph that I want to print on the whole page in landscape orientation (paper A4).
    On the screen the graph is small, so I do resizing, appending image to report, and then printing.
    After sending it to the printer I get preview (from the printer software) and see that the graph uses only approx. 5/6 of the page in the width, in other words the height of the graph takes the whole height of the page (21 cm) and the width of the graph leaves 5 cm of the page unused.
    I tried to change the width and the height of the plot area to get proper ratio, but in vain.
    If I set the height of the graph too large it goes beyond the page, but whatever I write to the width I always get 5 cm of the page unused on the right side. (not including 1 cm of the margin).
    Note: surely, if you set small width you can get more space of the page unused, I'm talking about increasing the width of the graph.
    Any ideas?
    See attached for the vi. I tried to save it for 7.1 version but it can't, so you'll need LabView 8.0 to check it.
    Also in attached you can find the page preview I get before it goes to printer.
    Thanks in advance.
    Rashid.
    Using LV 8.0 Pro on WinXP with printer Canon PIXMA iP1000 (also tested on HP printer, but I think it doesn't matter).Message Edited by Rashid on 06-06-2006 07:09 AM
    Attachments:
    Graph printing out.vi ‏40 KB
    Report preview.png ‏48 KB

    Rashid,
    It could be that you would need to install the entire LabVIEW 8.0.1 update rather than just the updated Run-Time Engine (RTE).  Here is a link to the 8.0.1 update.  If you download and install this version, you can then use the utility to mass compile or compile when you are prompted. 
    Repost if you have more questions!
    Andy F.
    National Instruments

  • Since I updated my Mac with iOS 7 I continually have pages open that get pixelated, either the whole page of parts.What can I do to fix the problems?

    Since I updated my Mac with iOS 7 I continually have pages open that get pixelated, either the whole page of parts.What can I do to fix the problems?

    Hi Peter,
    The results:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.4 GHz Intel Core i5 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 0:3:27
    Disk Information:
              Hitachi HTS545032B9SA02 disk0 : (320.07 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 319.21 GB (121.43 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Dell Dell USB Keyboard
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Internal Memory Card Reader
              Microsoft Microsoft Wireless Optical Mouse® 1.00
              Apple Computer, Inc. IR Receiver
              Apple Inc. Built-in iSight
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.Cycling74.driver.Soundflower          (1.5.1)
              com.sophos.kext.sav          (8.0.14)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.sophos.autoupdate.plist
              [loaded] com.sophos.intercheck.plist
              [loaded] com.sophos.notification.plist
    Launch Agents:
              [loaded] com.sophos.uiserver.plist
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist
              [loaded] com.plexapp.mediaserver.plist
              [loaded] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              Safari
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
              Perian
    Internet Plug-ins:
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              Google Earth Web Plug-in.plugin
              iPhotoPhotocast.plugin
              OfficeLiveBrowserPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                  13%          Microsoft Word
                  11%          InterCheck
                   4%          WindowServer
                   1%          Dock
                   1%          com.apple.WebKit.Networking
                   1%          sharingd
                   0%          Safari
                   0%          Microsoft Excel
                   0%          Plex Media Server
                   0%          mdworker
    Top Processes by Memory:
              197 MB             Microsoft Word
              139 MB             WindowServer
              123 MB             InterCheck
              82 MB              Preview
              82 MB              com.apple.IconServicesAgent
              78 MB              talagent
              74 MB              com.apple.WebKit.WebContent
              70 MB              Mail
              66 MB              Microsoft Excel
              49 MB              Messages
    Virtual Memory Statistics:
              1011 MB            Free RAM
              1.62 GB            Active RAM
              651 MB             Inactive RAM
              651 MB             Wired RAM
              311 MB             Page-ins
              0 B                Page-outs
    Regards
    Kym

  • Rollup object is small square in the page center but react to the whole page colour

    Can you explain this Muse site of the day: rollup object is in the page center but react to the whole page colour?
    http://www.ekswhyzed.com/portal.html
    Thanks!
    Dainis

    I always use root -> panelGroup -> table
    seems to work fine. at least at the point of scrollbars. Aren't browser scrollbars ones you are talking about?

  • How do I load an image w/o loading the whole page?

    On my site I have tons of images (I'm an artist) and in the gallery where my images are viewed, "pastels", I have layed out 9 blocks/squares of images and when one of the blocks is clicked upon, I'd like the image to change in the view, but not reload the whole page. Am wondering how in iWeb it can be done to have just the newly selected image change out instead of the whole page load up. Does this make any sense?
    Help and your comments are encouraged here on how to make it more user friendly.
    http://web.mac.com/makinart

    So, let me understand what you're saying here....
    Textwrangler is a program I can download (free, I see) and it can process a multitude of pages. Once I get the JavaScript (the HTML code that enables the image to change out), (still have to find that one on the net), then I can take the JavaScript, enter it by using Textwrangler into my html coding. How will I know where the JavaScript is to be placed in the html with all that coding, how is a newbie to figure this out? Is the html code for my iweb site located in my "published folder"? Afterwards, I would best save the whole iweb site as a folder, then upload it to .mac as a file? Any changes I make on Iweb and republish will be lost? Yikes! There's something to tell the iweb programmers!
    I can tell you this, that it may be well over my head!

  • Make the Custom page read only depending

    Hello all,
    Is there anyway to make a custom page readyonly for some users? I know we can set rendered to false for each region but i'm wondering if we have a property for the whole page.
    Thanks
    KK

    Hi KK,
    Is it a 11i or R12
    if it is R12 it is easy just passing the region where you want to make it read only or for the entire page, pass the top level region.
    If it is 11i, you need to copy paste the sample code and call it from your Process request after you did the user check.
    Btw, instead of user check, create a responsibility and assign that responsibility to those users and check for that responsibility to avoid any hard code in User list side.
    Check this thread and if you are not able to make it, please update the issue you face.
    How to make OA framework page Viewonly
    Ready only Page
    or
    http://www.applikast.net/technical/oa-fwk/misc/making-an-oa-framework-page-readonly
    Thanks,
    With regards,
    Kali.
    OSSi.

  • My pages are all messed up where i can't even see the whole page anymore. this just started a few days ago.

    in just the past few days when i get on my homepage or any other sites like facebook, youtube, ect. the pages are all messed up and i can't even see the whole page because it is enlarged and out of center. when i am on on my fb homepage i have to scroll to the right to get to the log out. everything just looks all crazy and messed up on any site i go to.

    Upgrade your browser to Firefox 8 and check
    * getfirefox.com

  • I updated to the latest version and now I do not have the page controls at the right hand side and bottom and can only move the page up and down using the mouse scroll wheel. I also cannot see the whole page I am trying to view.

    When I open the web browser I cannot see the whole page and I cannot move the image sideways and must use the mouse scroll to move up and down.

    Try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete the contents the following folder:
    User/Library/Containers/com.apple.iPhoto
    3 - reboot, launch iPhoto and try again.
    NOTE: For Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    where you can check the Show Library Folder checkbox.

  • PPR seems to render the whole page instead of small portion

    Hi, I made my first app using PPR and although everything works ok, the whole page seems to render rather than just the panelForm portion causing an open tab to close ( The tab uses javascript to open/close ).
    Anyhow, here is my code ( it's a simple app where you first choose an auto make, the model and the year )
    <af:panelForm>
    <af:selectOneChoice
    label="Marque" value="#{backing_vehicules.marque}"
    id="marqueDropDown"
    binding="#{backing_vehicules.marqueBinding}"
    autoSubmit="true">
    <f:selectItems value="#{backing_vehicules.marqueSelectItems}"/>
    </af:selectOneChoice>
    <af:selectOneChoice
    label="Modele" value="#{backing_vehicules.modele}"
    id="modeleDropDown" binding="#{backing_vehicules.modeleBinding}"
    partialTriggers="marqueDropDown" autoSubmit="true"
    >
    <f:selectItems value="#{backing_vehicules.modeleSelectItems}"/>
    </af:selectOneChoice>
    <af:selectOneChoice
    label="Annee" value="#{backing_vehicules.annee}"
    id="anneeDropDown" binding="#{backing_vehicules.anneeBinding}"
    partialTriggers="modeleDropDown">
    <f:selectItems value="#{backing_vehicules.anneeSelectItems}"/>
    </af:selectOneChoice>
    </af:panelForm>
    Any help will be greatly appreciated!

    Hi Alexandre,
    Don't now if it will work, but you can try setting the PartialTriggers on the PanelForm itself and not on the individual items (you can set multiple PartialTriggers for the same item)... maybe that'll behave as expected.
    Regards!
    Thiago

  • When I AirPrint it only does small portions of the page. How do I get it to print the whole page?

    When I AirPrint The printer only prints a portion of the page.  How do I get it to print the whole page.

    It would help if you stated what printer you are using and what application you are doing the printing from. Also, what are you printing?

Maybe you are looking for

  • Can see my machine through vpn, but can't connect...

    Hello all, On 10.8.1 with ARD 3.6.1 at home-Mac MIni Server. Connected through a VPN (Cisco IPSec) to my office. I can see my work station at work (10.8.1, ARD 3.6), but I CAN'T connect. Message I get is: Make sure remote management is enabled in sha

  • Blue, red, green screen

    I have had my i book for about 3 years. Recently it has just started going to this black screen, then red, blue, or green. I wiped out the hard drive and it is still doing it. Any one else face this problem. I'm trying to fix it my self before i send

  • Link to download JDK 1.3.1  for HP-UX 11 for Oracle Upgrade

    Hello..>All We are working on up-grade Oracle 8i to 9i but for that purpose it ask JDK 1.3.1 or Highrt Version. for HP-Ux. Where can i found the JDK 1.3.1 or Downloadeable LInk . Thanks in advance , Santosh

  • MP4 videos for Asha 206

    my asha 206 does not play mp4 videos and does not support viber I edited the title of the post and provided an appropriate one. 

  • Mail behaving poorly after 10.4.10 update

    Just updated the MBP to 10.4.10 about an hour ago. Now Mail is doing the following things: • Will not automatically open a new message and address it when you click on a mail link on a website (e.g., craigslist). • Will not quit. I have to force quit