Dreamweaver CC fluid grid divs not stretching out to cover 100% of the screen

Hi there,
I am doing another responsive layout using DW CC and I have come across a problem.
The design has coloured divs stretching across the page at 100% with a coloured background and borders.
I have already done the design up as a fixed width layout to get the colour codes etc and that is working fine, with the colours stretching across the screen.
Now I am putiing the design into DW CC using fluid grid layout and there is a white border outlining the website.
I can't work out how to get rid of this. Below are extracts of my two lots of CSS stylesheets, one for a fixed grid layout and one for a responsive layout
FIXED WIDTH CSS
body,td,th {
    font-family: Calibri;
    font-size: 14px;
    color: #000;
body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
*/This header wrapper stretches across the entire screen no matter what the size and does not have a white border on the left and the right
#headerWrapper {
    background-color: #000;
    height: 101px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #BDDB6D;
FLUID GRID CSS
The fluid grid layout CSS has the following in it:
.fluid {
    clear: both;
    margin-left: 0;
    width: 100%;
    float: left;
    display: block;
.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;       
/* Mobile Layout: 480px and below. */
.gridContainer {
    margin-left: auto;
    margin-right: auto;
    width: 86.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
    clear: none;
    float: none;
#div1 {
*/This header wrapper stretches across the grid layout only and has a white border on the left and the right
#headerWrapper {
    max-width: 100%;
    height: 101px;
    background-color: #000;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #BDDB6D;
What do I need to add to the fluid grid layout to make the headerWrapper div stretch across the screen, no matter what the width?
What do I have to put in the fluid grid CSS to get it to do this?
Thanks in advance!

I did it! I can't believe it. The code I used is follow. The bar divs set the colour and border across the entire page and the wrapper divs contain the content in the various bars across the page.
I must say that DW CC fluid grids are much more stable to work with and can take a lot of hand coding now. It is a great improvement on when I tried to use Fluid grids on a project last year.
IN THE PHONE MEDIA QUERY SECTION
.gridContainer {
          margin-left: auto;
          margin-right: auto;
          width: 100%;
          padding-left: 0;
          padding-right: 0;
          clear: none;
          float: none;
#headerBar {
          background-color: #000;
          min-height: 101px;
          border-bottom-width: 2px;
          border-bottom-style: solid;
          border-bottom-color: #BDDB6D;
          padding-top: 2.735px;
#headerWrapper {
          width: 86.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
          clear: none;
    float: none;
          margin-left: auto;
#menuAnimationBar {
          background-color: #B7B7B7;
          height: 293px;
          border-bottom-width: 2px;
          border-bottom-style: solid;
          border-bottom-color: #BDDB6D;
          background-image: -webkit-gradient(linear, 50.00% 0.00%, 50.00% 100.00%, color-stop( 0% , rgba(153,153,153,1.00)),color-stop( 100% , rgba(192,192,192,1.00)));
          background-image: -webkit-linear-gradient(270deg,rgba(153,153,153,1.00) 0%,rgba(192,192,192,1.00) 100%);
          background-image: linear-gradient(180deg,rgba(153,153,153,1.00) 0%,rgba(192,192,192,1.00) 100%);
display: none;
#contentBar {
          background-color: #F8FCF1;
          min-height: 200px;
          background-image: -webkit-gradient(linear, 50.00% 0.00%, 50.00% 100.00%, color-stop( 0% , rgba(245,251,234,1.00)),color-stop( 100% , rgba(251,253,247,1.00)));
          background-image: -webkit-linear-gradient(270deg,rgba(245,251,234,1.00) 0%,rgba(251,253,247,1.00) 100%);
          background-image: linear-gradient(180deg,rgba(245,251,234,1.00) 0%,rgba(251,253,247,1.00) 100%);
#contentWrapper {
          width: 86.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
          clear: none;
    float: none;
          margin-left: auto;
#socialMediaBar {
          background-color: #000;
          min-height: 83px;
          border-top-width: 2px;
          border-bottom-width: 2px;
          border-top-style: solid;
          border-bottom-style: solid;
          border-top-color: #BDDB6D;
          border-bottom-color: #BDDB6D;
#socialMediaWrapper {
          color: #FFF;
          width: 86.45%;
          padding-left: 2.275%;
          padding-right: 2.275%;
          clear: none;
          float: none;
          margin-left: auto;
          padding-top: 2.275%;
#footerBar {
          color: #FFF;
          background-color: #AAAAAA;
          min-height: 176px;
          background-image: -webkit-gradient(linear, 50.00% 0.00%, 50.00% 100.00%, color-stop( 0% , rgba(153,153,153,1.00)),color-stop( 100% , rgba(185,185,185,1.00)));
          background-image: -webkit-linear-gradient(270deg,rgba(153,153,153,1.00) 0%,rgba(185,185,185,1.00) 100%);
          background-image: linear-gradient(180deg,rgba(153,153,153,1.00) 0%,rgba(185,185,185,1.00) 100%);
#footerWrapper {
          width: 86.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
          clear: none;
    float: none;
          margin-left: auto;
IN THE TABLET MEDIA QUERY SECTION
.gridContainer {
          width: 100%;
          padding-left: 0%;
          padding-right: 0%;
          clear: none;
          float: none;
          margin-left: auto;
#div1 {
#headerBar {
#headerWrapper {
          width: 90.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
          clear: none;
    float: none;
    margin-left: auto;
#menuAnimationBar {
display: none;
#contentBar {
#contentWrapper {
          width: 90.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
          clear: none;
    float: none;
    margin-left: auto;
#socialMediaBar {
#socialMediaWrapper {
          width: 90.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
          clear: none;
    float: none;
    margin-left: auto;
#footerBar {
#footerWrapper {
          width: 90.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
          clear: none;
    float: none;
    margin-left: auto;
#menuAnimationWrapper {
IN THE PC MEDIA QUERY SECTION
.gridContainer {
          width: 100%;
          max-width: 1920px;
          padding-left: 0%;
          padding-right: 0%;
          margin: auto;
          clear: none;
          float: none;
          margin-left: auto;
#headerBar {
#headerWrapper {
          width: 88.5%;
    max-width: 1232px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
#menuAnimationBar {
          display: block;
#contentBar {
#contentWrapper {
          width: 88.5%;
    max-width: 1232px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
#socialMediaBar {
#socialMediaWrapper {
          width: 88.5%;
    max-width: 1232px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
#footerBar {
#footerWrapper {
          width: 88.5%;
    max-width: 1232px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
    clear: none;
    float: none;
    margin-left: auto;
#menuAnimationWrapper {
          width: 88.5%;
          height: 293px;
    max-width: 1232px;
    padding-left: 0.75%;
    padding-right: 0.75%;
    margin: auto;
          clear: none;
    float: none;
    margin-left: auto;

Similar Messages

  • Dreamweaver CC fluid grid, can I change the position of DIV's based on Mobile, Tablet, Desktop view?

    Hi all,
    Currently working on my first Dreamweaver CC fluid grid / responsive site. I want to optimise the pages layout for Mobile, Tablet and Desktop.
    I can see that I can hide individual div elements by adding "display: none;" to the mobile media query code in the CSS.
    I am wondering am I able to change the position of DIV's in relation to the order of each other some how using a similar way?
    Eg I have a webpage design for desktop like.
    Title
    Nav
    Description
    Buy Button
    Photo
    On mobile I'd like to be able to bring that Photo up towards the top of the layout eg.
    Title
    Nav
    Photo
    Description
    Buy Button
    I was hoping those up and down arrows you see in the Dreamweaver CC interface was going to some how make the changes to each view Mobile, Tablet, Desktop, but all that is doing is moving the position of code in the HTML amoung each of the main DIV sections.
    Or am I at the point where I will need to create a seperate page for mobile only to make a layout change like this?
    Any help would be great

    Hi Complexity,
    I have got some further info, and if I have lead you astray I am sorry.
    I don't think you can change the order of the divs in a responsive layout in DW CC.
    However, you can arrange the divs to sit under or beside each other differently in each of the layouts, for pc, tablet or phone.
    You can also switch divs off and on in each of the layouts, having them display in one size screen and not in another.
    So what you would need to do is to create a couple of nav divs, if you want a nav at the top of one type of screen and one at the bottom. You could duplicate the content in both of them and switch one on in one layout and one off in the other.
    I hope this helps!
    I am doing my first layout for a client using DW CC responsive layouts. I have done two test/hobby sites already.
    It is a bit of a mission learning it but I am getting there.
    I do find it interesting that most people recommend using other programs to do responsive rather than Dreamweaver's fluid grid layouts. I don't think many people are using it yet.
    Regards,
    Mary

  • Dreamweaver CC fluid grid controls disappearing and other info

    Hi All,
    I have finally completed my first commercial fluid grid design in Dreamweaver CC and it was a bit of a mission.
    One disconcerting thing about the program is that the fluid grid controls keep disappearing. You know, the ones where you can hide the div, duplicate it, move it up or down, or delete it.
    I have found that when this happens, I need to close the html file I am working on in DW CC and then open it again. The controls then appear again, so you can rearrange your various layouts as demonstrated in those breezy demo videos about DW CC fluid grid layouts.
    So don't just conclude you have broken the code when these controls disappear, try closing and opening the file again first.
    Also you need to insert all the divs you need for all layouts in the mobile phone layout, as that is the main layout, governing all the others because of the way the media queries are set up in the CSS file that is created when you start your fluid grid layout.
    I could not work out how to reorder divs in the different layouts, this may not be possible at the moment. Instead I created divs in the phone layout to cover all of the divs needed in the three layout sizes and switched them off and on in the various layouts. This works really well, but I found that DW behaved strangely if I switched a div off in the mobile layout and then tried to style it in one of the other layouts. So I suggest styling all of the divs first for all the layouts before switching any of them off in the mobile layout.
    Also you can't copy the contents of one div and put them in another without freaking the program out, especially if you are working in a div that is hidden in the mobile layout.
    I suggest saving regularly as you add new divs and style them and view live in a browser immediately, as the preview in DW CC is not reliable. It can't show rounded div corners or shadows for example.
    Keep an eye on the code as it is built by your use of the CSS Properties panel. If it starts going wrong, close the html file without saving it or the attached CSS file. Then go back in and try what you want to do again.
    If you save weird code errors, your work could be so compromised that you need to start all over again. So quit out without saving if you notice this.
    After much experimentation I now insert images into a div, rather than make them a background image, as the background image will not completely show if the content of the div is not long enough. This may require a rethink of your design.
    Doing any absolute sizes in a div will make the responsive design very hard to style and possibly break the code, so I don't suggest it.
    Adding padding to a div can make it stick out of right edge of the design, I am not sure why this is the case and could not work out how to stop it. So use low pixel numbers in the padding of a div.
    Also control z seems to be a sudden death move, so I stopped doing that.
    So my first job has been a bit of a ride, but I seem to be nearly there on my first design.
    I think DW CC is still a work in progress and I look forward to further updates of the software.

    Hi Top Ten,
    You can't get them back once they go. You now need to edit the css code manually to do the same thing.
    For instance if you want divs to sit beside each other you put this in the css for that div:
    clear: none;
    This css means that div will allow other divs to sit beside it.
    Then put in a width in percentages. For example if you have three divs that need to sit beside each other put:
    width: 33%;
    in each of them. Or maybe:
    width: 31%;
    margin-right: 2%;
    Fortunately in DWCC it is now robust enough for you to do those code changes by hand. My original question in this thread was posed when DW CC fluid grid had just come out and crashed easily. A year later all is well, so you can do those changes in the css code without problems now.
    Regards,
    Mary

  • Trouble getting Fluid Grid Div's to line-up

    Hello - I've a problem with some "Fluid Grid Div's" I'm using on a "Responsive Website" I'm building and I'm hoping someone can point me in the right direction.
    - Working In CS6 DW -
    My "Mobile" version looks OK as a 1-column but my "Tablet" and "Desktop" version that are supposed to be 2-column have problems.
    On the "Tablet" and "Desktop" the title bar in black with the orange text "SELL IT" is the problem.
    When I added it to the "Desktop" version and sized it to fit over my text column (Div) that's it's suppose to go over - it pushes the text column that should be under it off to the left and I can't seem to get it to go under it.
    What's really puzzling is, if I make the "SELL IT" bar 100% in width (960px) then the text column (Div) falls under it fine, but when I reduce the width of my "SELL IT" bar to the same width as the text column (Div) that goes under it - all it does is push the text column (Div) off to the left as it's doing in the page I've posted.
    The "Tablet" version has some issue's also but I think if I can get the "Desktop" version fixed, it'll give me the knowledge to get the "Tablet" version working right.
    I added the "EVENTS" title bar in first and sized it and got to fit perfectly, but when I added the "SELL IT" title bar - my problems started.
    Please help a newbie out in the Dreamweaver CS6 world!
    Thanks,
    Flip
    I've posted a page that represents my issue.
    http://www.wakeupgraphics.com/ici_t/index03t.html

    I have to agree with Ben.  Despite Adobe's hype, FGLayouts feature is not for beginners.  You need a firm grasp of HTML, CSS, RWD and CSS Media Queries to use it correctly.   Most beginners don't use it right.
    Your HTML code is too fussy and cluttered for such a simple page.  When I see excessive use of <span> <br> and <div> tags it makes me cringe. Why are you making things so complicated? You have all the style hooks you need with plain HTML selectors. h1, h2, h3, p, dl, dt, dd.  Incidentally, I don't like the extra scroll bar.  It's going to be sheer hell to navigate on a mobile device.    Copy & paste this code into a new, blank document.   Save and preview in browsers.
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>test_ici</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="css/tcycleslider.css" rel="stylesheet" type="text/css">
    <style>
    /**CSS Reset, fixes the box model in % layouts**/
        margin: 0;
        padding: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    /**links**/
    a img { border: none }
    a {
        text-decoration: none;
        color: #F90
    a:visited { color: #999 }
    a:hover, a:active, a:focus {
        color: #CFF;
        text-decoration: underline
    body {
        background: #000 url(http://www.wakeupgraphics.com/ici_t/images/BG_LRG3bg-lr.jpg);
        font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
        font-size: 100%;
        color: #EEE;
    .gridContainer {
        background: rgba(51,51,51,0.5);
        border: 1px solid #000;
        width: 96%;
        margin: 0 auto;
    #Div1, #Div2{
        background: rgba(0,0,0,0.3);
        border-radius: 15px;
        margin:0 0.5% 0 0.5%;
    h2 {
        font-family: Arial, "Arial Bold", "Arial Bold Italic", "Arial Italic";
        font-size: 225%;
        font-weight: bold;
        color: #F60;
        background: #000;
        border-radius: 10px 10px 0 0;
    dl {
        margin: 4% 0 0 4%;
        padding: 1%;
        font-size: 80%;
        color: red;
        padding-bottom: 20px
    dt {
        font-style: italic;
        font-weight: bold;
        line-height: 2.5em;
        text-decoration: underline;
        color: #EEE;
    dd {
        font-size: 75%;
        color: #EEE
    /* Special Rules for Tablets, Desktops */
    @media only screen and (min-width: 500px) {
    .gridContainer { width: 80%; }
    #Div1, #Div2 {
        width: 49%;
        float: left;
    footer {
        clear: both;
        display: block;
    </style>
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
    <header> Header </header>
    <div id="Div1">
    <h2>SELL IT</h2>
    <dl>
    <dt>1965 Mustang Convertible </dt>
    <dd>Matching numbers; original engine and transmission, correct exterior color and interior color. The paint and interior are new, just restored, red with white interior and top; 6 cylinder, automatic, power steering, power top, detailed engine compartment and trunk restored floor pans and exterior sheet metal. </dd>
    <dt>1968 Corvette Convertible </dt>
    <dd>VIN 194678S423292, New 350 engine, 4 speed transmission, New red paint, interior and top black, stainless steel brakes, Looks and drives great like new. </dd>
    </dl>
    <!--end Div1--></div>
    <div id="Div2">
    <h2>EVENTS<a href="http://www.impatientcreations.com/Events/index.htm" title="Events" target="new"></a></h2>
    <dl>
    August 20014
    <dt>Last Saturday Montgomery, AL Cruise Night </dt>
    <dd> When: Sat, August 30, 6pm – 10pm</dd>
    <dd>Where: Montgomery, AL (<a href="https://www.google.com/maps/place/7900+Vaughn+Rd,+Montgomery,+AL+36116/@32.338249,-86.1784 629,17z/data=!3m1!4b1!4m2!3m1!1s0x888c2b7e9d1c573b:0x9c731719fc4988c5" title="Flip's_Grill" target="new">map</a>)</dd>
    <dd>Description: Flip's Grill at Vaughn &amp; Taylor Roads</dd>
    <dd>Info: Bryant, 334.290.7509</dd>
    </dl>
    <dl>
    September 2014
    <dt>1st Friday Gadsden Cruise Nights</dt>
    <dd>When: Fri, September 5, 7pm – 10pm</dd>
    <dd>Where: Gadsden, AL (<a href="https://www.google.com/maps/place/Gadsden+Museum+of+Art/@34.0130619,-86.0228765,12z/data=! 3m1!5s0x888a3ea4574b4387:0x5aa4120bf25ef6e0!4m5!1m2!2m1!1sgoogle+map,+Museum,+Broad+Street +in+downtown+Gadsden!3m1!1s0x888a3ea44eefd4f1:0x644cd4cdf002c6dd" title="Broad St_cruisenight" target="new">map</a>)</dd>
    <dd>Description: Broad Street, Downtown</dd>
    <dd>Info: 256.390.4787</dd>
    </dl>
    <dl>
    <dt>1st Saturday at Dairy Queen in Alabaster</dt>
    <dd>When: Sat, September 6, 8am – 12pm</dd>
    <dd>Where: Alabaster, AL (<a href="https://www.google.com/maps/place/780+Colonial+Promenade+Pkwy,+Alabaster,+AL+35007/@33.237 7613,-86.8018635,17z/data=!3m1!4b1!4m2!3m1!1s0x888925952b6ac7d9:0x3b5e48d7f61499e1" title="DQ_Alabster" target="new">map</a>)</dd>
    <dd>Description: 1st Saturday at Dairy Queen in Alabaster</dd>
    </dl>
    <dl>
    <dt>1st Saturday Hoover AL Cruise Night</dt>
    <dd>When: Sat, September 6, 8am – 12pm</dd>
    <dd>Where: Hoover, AL (<a href="https://www.google.com/maps/place/Old+Patton+Chapel+Rd,+Hoover+Square+Shopping+Center,+Hoo ver,+AL+35216/@33.3929789,-86.8073922,17z/data=!3m1!4b1!4m2!3m1!1s0x888922095c428053:0xc85 2d493c0ea3860" title="KrispyKream_Hoover" target="new">map</a>)</dd>
    <dd>Description: Dixie Vintage Automobile Club KRISPY KREME COFFEE CRUISE IN, Highway 31 at Old Patton Chapel Road</dd>
    <dd>Info: Gary Adams 205-706-7614</dd>
    </dl>
    <!--end Div2--></div>
    <footer> Footer </footer>
    <!--end gridContainer--></div>
    </body>
    </html>
    EDIT: I changed Layout1 and Layout2 to Div1 and Div2.

  • Centering a page in Dreamweaver CS6 Fluid grid

    Centering a page in Dreamweaver CS6 Fluid grid.
    I figured this would be an easy task and have saved it to last. After watching videos, scanning the web and this forum I have found many answers but none of them seem to work in CS6. I currently have an extra 1-2% margin on the left to get the page closer to the middle but this doesn't work well with all screen sizes and its still not in the middle.
    Page can be found here
    Any advice would be greatly appreciated!

    It looks like you've nested the rest of content within your #header DIV. And header div's width is 94.4% - this results in everything on the site have a ~5% margin on right.
    You may want to fix this first to see if it helps you with the result you intend to get. If not, do post back.

  • How to Include More Than One Font and Font Color Within a Fluid Grid Div Tag?

    Using CSS code, I can make all the words within a fluid grid div tag the same font, font size, and font color, but how do I make a few of the words different?

    You can style the basic text and heading selectors with CSS:
    p { }
    h1 { }
    h2 { }
    h3 { }
    h4 { }
    etc...
    And you can make classes:
    .red {color:red}
    .highlight {background-color:yellow}
    Then apply classes to your text or sections of it using the HTML properties panel.
    <div>
         <p>This is a default paragraph style.</p>
         <p class="red">This is red.</p>
         <p class="highlight">This is highlighted.</p>
         <p>Default style with <span class="red highlight">red, highlighted text</span> and normal text.</p>
    </div>
    Incidentally, this will work in any layout.
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • Fluid Grid guides not showing

    Anyone else having trouble with getting fluid grid guides to show? I've tried all the obvious solutions... Also, anyone having touble getting the "View in Browser" button to work?

    Start with this:
    Deleting Corrupted Cache and/or Configuration folder in DW
    http://forums.adobe.com/thread/494811
    If that doesn't fix things, try this:
    Restore Preferences
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    If that still doesn't fix things, you may need to do a clean re-install.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Nancy O.

  • My ipod nano 6th gen fell out of my pockey and the screen cracked badly, is there any coverage for this under warranty? I just bought it a month ago. If not what are the options for getting it fixed

    My ipod nano 6th gen fell out of my pocket and the screen cracked badly, is there any coverage for this under warranty? I just bought it a month ago. If not what are the options for getting it fixed? It is pretty frustrating, it fell from about 3 feet out of my pocket and now looks like it was beaten by a hammer.

    Debbie:
    deborahfromwindsor wrote:
    he advises restarting by inserting the OSX disc and pressing down the C button to reboot from there then selecting disk utility, hard disk and repair.... Does he mean me to hold down the C key on the alpha keyboard or the ctrl key?
    Should I just ask for my money back??? If it is a simple repair do I just literally push the disc in, push the power button and hold down the C button?
    That's where I would begin, too, with
    Repair Disk
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.TStatus of HDD at the bottom of right panel, and report if it saysanything but Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need touse autility like TechTool Pro,Drive Geniusor DiskWarrior
    First we need to determine if the issue you are experiencing with the computer is software or hardware based. Once we have gotten things sorted out there should be time enough to make you decision about keeping or returning it.
    cornelius

  • All the links to download DREAMWEAVER CS3 Creative Suite are not working. How can I download the file ? I have a serial number of a purchased software.

    All the links to download DREAMWEAVER CS3 Creative Suite are not working. How can I download the file ? I have a serial number of a purchased software.

    They work just fine. whatever issues you have are specific, but without proper system info, browser info and other details nobody can even begin to guess.
    Mylenium

  • I have  a iphone 5 and i can not figure out how to turn on the LED notification light. is this even possable? if not how do i know if i missed a call when i was not there to answer it visualy

    I have  a iphone 5 and i can not figure out how to turn on the LED notification light. is this even possable? if not how do i know if i missed a call when i was not there to answer it visualy

    If you were not there, how would you see the led?
    Anyway missed calls will appear on your Lock screen under the Missed tab.
    Or a small red numbered badge will appear on the Phone App icon when you have missed calls. You can then access the Recents Tab in the Phone App to see whcih calls were missed.
    Missed Calls are shown in red there

  • HT1212 im locked out of my ipod, and the screen isnt responding when i go to swipe to unlock it or when i swipe to turn it off. But, in the top left hand corner, there is an outline of a box. how do i fix this

    im locked out of my ipod, and the screen isnt responding when i go to swipe to unlock it or when i swipe to turn it off. All of my notifications are there but i cant reply to any of them. My screen is completly unresponsive. But, in the top left hand corner, there is an outline of a box. how do i fix this?

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • I just broke my ipad. I've taken really good care of it and had it since the third gen came out (bought it right away) the screen is cracked from the bottom right corner and im wondering if i can replace it for free or even at all please help :(

    I've taken really good care of it and had it since the third gen came out (bought it right away) the screen is cracked from the bottom right corner and im wondering if i can replace it for free or even at all please help

    You can replace it, but not for free.
    iPad mini: $219
    iPad 2 or earlier, iPad mini Retina display: $249
    iPad 3rd generation or later: $299

  • I imported photos from an old iPhoto (2001) to photo library and can now see them as thumbnails but not when I click on them. The screen is black cannot see or print either. Is there any way to salvage those old photos? I now use iLife09. OS 10.6

    I imported photos from an old iPhoto (2001) to photo library and can now see them only as thumbnails but not when I click on them. The screen is black cannot see or print either. Is there any way to salvage those old photos? I now use iLife09. OS 10.6

    Did you import the old iPhoto library into the new one? That's not what you want to do because you will import all of the original, modified and thumbnail files as if they were original files. Lots of duplicates and useless small photos.
    Do you have a backup copy of the library that you imported into to?  If you do then bring it in and then use  iPhoto Library Manager to merge the two libraries into a new, 3rd library.
    If you don't then you'll have to try to fix the current one and then cull out the duplicates and small useless photos as follows:  make a temporary, duplicate copy of your library and apply the three fixes in order as necessary.
    Fix #1
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your HD/User/Home()/ Library/Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your HD/User/Home()/Library /Caches/com.apple.iPhoto folder. 
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #3
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    If this doesn't fix the problem you'll have to start over from scratch and create a new library from the files inside the Originals folder of your current library.  But first you should cull out the small photos that would be the thumbnails from the 2001 library.
    Move the Originals folder to the Desktop, open and do a search for Kind=photo, File size is less than 10 KB.  That should find all of the thumbnail files which you can then drag to the Trash.  You might have to make that less than 50 KB. Then Import the remaining photos into a new iPhoto library.
    OT

  • Firefox 4 blacks out and distorts sections of the screen if I scroll on a website, navigate the bookmarks or sometimes just randomly.

    Firefox 4 blacks out and distorts sections of the screen if I scroll on a website, navigate the bookmarks, at the addons/extensions menu or sometimes just randomly. Occasionally this causes it to crash often with the rest of the computer (no crash report). The previous versions of firefox all ran fine.

    I seem to have fixed this by setting layers.acceleration.disabled to true (In about:config). I assume this is something to do with graphics hardware acceleration but I am not sure what the wider consequences of changing this setting are. Nothing seems to be going wrong so far though.

  • I am trying to manage my "Location Services" on my iTouch but the device does not allow me to make changes. The screen is muted indicating that changes cannot be made. Anyone experience something similar?

    I am trying to manage my "Location Services" on my iTouch but the device does not allow me to make changes. The screen is grayed-out indicating that changes cannot be made. Anyone experience something similar?

    Do you have any Restictions set? (Settings>General>Restrictions)

Maybe you are looking for

  • On-line Fireworks Class

    Has anyone taken the on-line Fireworks class with the HTML Writers Guild? Was it worth your time and money? Thanks. -Tom

  • How do i get ical from phone to mac book pro

    I can't get my iphone 5 calendar onto my mac book pro, but anything i put onto the mac book instantly appears on the laptop. How do I get the two to communicate? Most frustrating.

  • Exception /CCM/CX_MAPPING_DELETION_FAILD occurred (program: /CCM/CL_MAPPING

    Dear all, I have uploaded master catalog with full indicator. It was uploaded . Now while mapping the supllier catalog to master catalog the below error came. Exception /CCM/CX_MAPPING_DELETION_FAILD occurred (program: /CCM/CL_MAPPING Please guide me

  • Where does UIManager Defaults created?

    Hi, I'm tring to translate JOptionPane, JColorChooser and so on. In the forums I saw that the default localization for the components can be found using UIManager. For example the text for the ok button in JOptionPane can be found using UIManager.get

  • Can Shuffle download music from video on iTunes

    I have a Bruce S. video on my iTunes but want to download the music to my shuffle. Can that be done or will I need to get the song without the video? iMac 20" Intel   Mac OS X (10.4.5)