Need help CSS Float, 2 columns

I am a student doing a presentation of 2 fixed-width columns using float following a lesson in a book, hard to accomplish what I want to and could use some advice please.

I want the main table to float on the left, and the wrapper of the background shines through to make the column, second right. I can't focus the image and text below the column on the right, the best way. I tried to put the picture and the text in a div tag, but could not look right and it went out. I am a novice at this so it must be simple. And validate too. TIA!

HTML

CSS

now:

splash-now.jpg

wanted:
splash_want.jpg

TheOriginal150mph wrote:

Thanks Osgood. It seems now almost exactly how I had imagined! I could never came up with this! Box-sizing... wow...

Editing, I want for this index page - I have no chance moving to the top of the 'land as muse' script fonts png and jpg of hiker in the div. .main that something prevents them from going up.

I used a technique of replacement header text image that I can use a special font for my H2, so I thought that was it. I tried clear float on the png and jpg but no luck.

Advice please!

Thank you

PS - the
of are just for the stacking of artistic texts

Margin: 0; padding: 0; the h2 as a css selector below:

H2 {}

/ * - header text image replacement technique * /.

text-indent: 100%;

white-space: nowrap;

overflow: hidden;

margin: 0;

padding: 0

}

Tags: Dreamweaver

Similar Questions

  • Need help to sort a column in the classic report

    Hi I'm creating and classic report and I need to sort on the columns. I also use a selection list to filter the records in the column. When I do not use the list selection sorting works but when I'm on the selcet list and select the sort option, then it is showing error. If anyone can help...

    Thnaks,
    Rik

    Hello

    Is it possible see the source code?
    If you create the developer user to your workspace and post login information.
    Or you can send information to connect to me by e-mail. My email is in my profile

    Kind regards
    Jari

  • SQL help - Need help to rotate the columns to rows

    I have a HughesNet to divide the columns into multiple lines. For example:

    EMP_DEPT

    ROWID empid1 ename1 empid2 ename2 empid2 ename2 empid4 ename4 dept4 dep3 dep2 dept1
    100001 1 'SCOTT' 10 2 'DAVE' 20 3 10 4 20 SMITH "MILLER"
    100002 1 'SCOTT' 10 2 'DAVE' 20 3 'MILLER' 20

    Note: EMP_DEPT do not always have information about the 4 employees settled for example in info only 3 employees rank 2 are there

    I need to convert and insert it into the EMPLOYEE table as follows:

    EMPLOYEE

    EmpID ename dept
    1 SCOTT 10
    2 20 DAVE
    3 MILLER 10
    4 SMITH 20

    1 SCOTT 10
    2 20 DAVE
    3 MILLER 20

    Thank you
    KeV

    Hey Kevin,

    Here's one way:

    WITH t AS (
      SELECT level i FROM dual CONNECT BY level <= 4
    )
    SELECT enty_type, enty_name, enty_id
    FROM (
      SELECT case when mod(t.i,2) = 0 then 'DEPARTMENT'
                  else 'EMPLOYEE'
             end as enty_type
           , case t.i
               when 1 then emp_name1
               when 2 then dept_name1
               when 3 then emp_name2
               when 4 then dept_name2
             end as enty_name
           , case t.i
               when 1 then emp_id1
               when 2 then dept_id1
               when 3 then emp_id2
               when 4 then dept_id2
             end as enty_id
      FROM emp
           CROSS JOIN t
    )
    WHERE enty_id IS NOT NULL
    ;
    

    Another using the MODEL clause:

    SELECT *
    FROM (
      SELECT enty_id, enty_name, enty_type
      FROM emp
      MODEL
      RETURN UPDATED ROWS
      PARTITION BY (pk)
      DIMENSION BY (0 i)
      MEASURES(
         emp_id1, emp_name1
       , emp_id2, emp_name2
       , dept_id1, dept_name1
       , dept_id2, dept_name2
       , cast(null as number(10)) enty_id
       , cast(null as varchar2(200)) enty_name
       , cast(null as varchar2(30)) enty_type
      )
      RULES (
         enty_type[1] = 'EMPLOYEE' , enty_id[1] = emp_id1[0], enty_name[1] = emp_name1[0]
       , enty_type[2] = 'EMPLOYEE' , enty_id[2] = emp_id2[0], enty_name[2] = emp_name2[0]
       , enty_type[3] = 'DEPARTMENT' , enty_id[3] = dept_id1[0], enty_name[3] = dept_name1[0]
       , enty_type[4] = 'DEPARTMENT' , enty_id[4] = dept_id2[0], enty_name[4] = dept_name2[0]
      )
    )
    WHERE enty_id IS NOT NULL
    ;
    

    Published by: odie_63 on 8 Dec. 2010 21:00

  • Need help to update the column 'TIMESTAMP '.

    Hello

    Here is my description of the table, I want to update the timestamp column, but I could not able to do, please help me with that.

    ID VARCHAR2 (4 BYTE),
    TYPE VARCHAR2 (1 BYTE),
    DATET TIMESTAMP (6).
    TYPE NUMBER

    Currently, I have value "01/05/2009 9:00:00.000000 AM" for the column DATET, now I want to update «9:00:00.000000 PM 01/05/2009» Please help me.

    Thank you.

    Hello

    Here's one way:

    UPDATE     table_x
    SET     datet     = datet + INTERVAL '12' HOUR
    WHERE     datet     = TO_TIMESTAMP ( '01/05/2009 09:00:00'
                          , 'DD/MM/YYYY HH24:MI:SS'     -- or whatever
                          );
    
  • Need help with an expiration date

    I have as of today on my spreadsheet, need help to make a column of expiry date which will go to the Red 20 days before expiry. Not to find the formula, please help? Thank you.

    Hi Emtsrus,

    Conditional highlighting in column A. Select the cells and then click Conditional highlighting

    Add rule > Dates > in the next

    Another reminder, formula in B2 (and fill down)

    = DATEDIFF (TODAY (), A2, "D")

    Kind regards

    Ian.

  • Need help with div floating and clear property

    Link to page

    Link to the CSS file

    I have the site currently configured as a site of 3 columns and everything works fine.  I need to do a few pages as a 2 column page with the left column with only several "leftcolumn" div piled on each other so that there are several sections of box rounded in the left column.

    I have the leftcolumn div is floated left with a clear left for the left div column to stack on each other.

    The by rightcolumn is floating right.

    How can I get my right column to align with the top of the first leftcolumn div?

    It is not always necessary to float each column.  A float is usually enough for a 2-column layout.

    Where you have this:

    {#rightcolumn}
    Width: 620px;
    float: right;
    color: #FFFFFF;
    do-family: Verdana, Arial, Helvetica, without serif.
    color: #FFFFFF;
    do-family: Verdana, Arial, Helvetica, without serif.
    padding: 10px;
    border: 3px solid #5f605f;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -Opera-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
    background-color: #858586;
    do-size: 12px;
    margin: 10px;
    }

    Change it as follows:

    {#rightcolumn}

    / * REMOVE IT * /.

    Width: 620px; 
    float: right;
    color: #FFFFFF;
    do-family: Verdana, Arial, Helvetica, without serif.

    color: #FFFFFF;

    do-family: Verdana, Arial, Helvetica, without serif.
    padding: 10px;
    border: 3px solid #5f605f;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -Opera-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
    background-color: #858586;
    do-size: 12px;

    / * REMOVE THIS * /.

    margin: 10px;

    / * ADD THIS * /.

    margin left: 350px;  / * adjust as needed * /.
    }

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

    Post edited by: Nancy O.
    Scratched do not work in the forum.  I edited the code for most sense.

  • Hi, I recently bought numbers in order to create a commercial newspaper. I'm the pen and paper. I need help to create a formula. A purchase column determines if the entry price column is subtracted from the price of output column or output subtracted

    Hi, I recently bought numbers in order to create a commercial newspaper. I'm the pen and paper. I need help to create a formula. A purchase column; Determines if the entry price column is subtracted from the price of output column (buy) or subtracted from (Sell) entry exit. Thank you for your help

    Hi B',.

    Buying and selling in column B

    Price of entry in column c.

    Exit in column D price

    Formula (and outcome) in column E

    If the column will B always contained 'Buy' or 'Sell', it works. It is default to a calculation of 'sell' if sale or has been specified.

    E2: = IF (B = "Buy", D - C, C - D)

    If you want to delay the calculation until the amounts entered in C and D, use this version:

    E2: = IF (OR (LEN (C) < 1, LEN (D) < 1,"", IF (B = "Buy", D - C, C - D) ")

    If you want to delay the calculation until all three ducks are on a line (B contains buy or sell, C and D contain both data), use this version:

    E2: = IF (OR (LEN (C) < 1, LEN (D) < 1,"", IF (B = "Buy", D - C, IF(B="Sell",C-D,) "" ")))

    Third version used in this table.

    Kind regards

    Barry

  • need help to trigger to update the change of columns of a table

    Hi all
    I need help in the manufacture of change update trigger in the columns from one table to another table.
    For example, table (col1 col 2 col 3 col 4 col 5 samplea
    .. .Col 20

    Now if I do any change in one of the data column must be changed to
    sample_copya... table that contains duplicate column

    So for this I thought to create a trigger with the following logic



    If updating (col1) then
    Update sample_copya set col1: =: new.col1 where n ° 1 =: new.no1;
    Otherwise, if the update (col2) then
    Update sample_copya set col2: =: new.col2 where n ° 1 =: new.no1;
    Otherwise, if the update (col3) then
    Update sample_copya set col3: =: new.col3 where n ° 1 =: new.no1;

    end if;
    But how doi handle if all columns are changed or say 2 columns record the number of columns is more than 20...
    I would like to know if there is a simpler method to achieve...
    Thank you

    susf wrote:
    Hi all
    I need help in the manufacture of change update trigger in the columns from one table to another table.
    For example, table (col1 col 2 col 3 col 4 col 5 samplea
    .. .Col 20

    Now if I do any change in one of the data column must be changed to
    sample_copya... table that contains duplicate column

    So for this I thought to create a trigger with the following logic

    If updating (col1) then
    Update sample_copya set col1: =: new.col1 where n ° 1 =: new.no1;
    Otherwise, if the update (col2) then
    Update sample_copya set col2: =: new.col2 where n ° 1 =: new.no1;
    Otherwise, if the update (col3) then
    Update sample_copya set col3: =: new.col3 where n ° 1 =: new.no1;

    end if;
    But how doi handle if all columns are changed or say 2 columns record the number of columns is more than 20...
    I would like to know if there is a simpler method to achieve...
    Thank you

    What is the purpose of this trigger?
    How can you be sure that ' where n ° 1 =: new.no1 "is true?
    How does line in the SAMPLE_COPYA table at the start?
    only the last modified value will lie in SAMPLE_COPYA than the previous values is written more

  • Unable to debug the CSS and JS MAF Application - need help

    Hello

    I tried to debug my app as a result of this process. BU has had no success.

    http://www.Ateam-Oracle.com/debugging-MAF-applications-on-Android/


    Only able to find attached as #EMULATOR sdk emulator - 5554 under chrome://inspect/#devices.

    But did not find the HTML code under it.

    It is always empty, although the emulator displays the page of the app.

    Could if it you please let me know if I am missing something here.

    I started the

    C:\JDeveloper\mywork\ChromeDebugTest\deploy\Android1 > Bad start-server
    * demon does not. from now on port 5037 *.
    * the daemon started successfully *.

    and check USB dubbing checked into the emulator.

    I put the proxy also in the emulator.

    ___________________________________________________________________

    I get the log in the logcat as below.

    09-25 13:05:57.496: D/AndroidRuntime (1194): > > > > > > com.android.internal.os.RuntimeInit AndroidRuntime START < < < < < <

    09-25 13:05:57.506: D/AndroidRuntime (1194): CheckJNI is running

    09-25 13:05:57.570: D/dalvikvm (1194): attempt to load lib libjavacore.so 0 × 0

    09-25 13:05:57.576: D/dalvikvm (1194): added shared lib 0 × 0 libjavacore.so

    09-25 13:05:57.616: D/dalvikvm (1194): attempt to load lib libnativehelper.so 0 × 0

    09-25 13:05:57.616: D/dalvikvm (1194): added shared lib 0 × 0 libnativehelper.so

    09-25 13:05:57.836: D/WebViewTimersControl (745): onBrowserActivityPause

    09-25 13:05:57.836: D/WebViewTimersControl (745): suspension webview timers, view = com.android.browser.BrowserWebView {40cdc720 VFEDHVCL. F... ID 0, 0-480 762}

    09-25 13:05:58.646: D/AndroidRuntime (1194): call the main entrance com.android.commands.pm.Pm

    09-25 13:05:58.916: D/AndroidRuntime (1194): VM stop

    Need help to solve this problem

    Thank you
    Ajoie

    I think that the minimum version of the Android SDK for this to work is 4.4 + API level 19 +.

    CM.

  • Need help with mobile layout

    Hello. Need help with my layout sensitive, using straight lines only html5 and css3 that I can understand and explain a novice level please - without any restart. Desktop and mobile are in a single html doc. The desktop version is 'ok '.

    current version (6_2)

    Try to match these mobile Office layouts

    On the mobile version:

    -Impossible to get the buttons nav blocks, vertical text button Align, and align the image of the product (square pictures) to the Center. (margin: auto; does not work)

    I used heights in the header because I'll have code for desktop, mobile and tablet in the CSS so it changes (and do not know how to support better). Also need to Add a link to the logo image background in header.

    Thanks in advance!

    TheOriginal150mph wrote:

    Hello. Need help with my layout sensitive, using straight lines only html5 and css3 that I can understand and explain a novice level please - without any restart. Desktop and mobile are in a single html doc. The desktop version is 'ok '.

    current version (6_2)

    Try to match thesemobile Officelayouts     

    On the mobile version:

    -Impossible to get the buttons nav blocks, vertical text button Align, and align the image of the product (square pictures) to the Center. (margin: auto; does not work)

    Commenting on just a habit of property changing the css if you have defined it for the desktop version. Your nav elements are not vertically Center because you have a bottom padding set on them for the office, there are only changes for mobile in your css media query.

    .main-nav a {}

    display: block;

    text-decoration: none;

    / * padding-bottom: 15px;   */

    Padding: 12px 0;

    }

    Change the properties for the .product-images for mobile boxes: you have float attached to them for the desktop version and which cascade down to the mobile version, unless you change in the media query:

    .product-image {}

    float: none;

    Width: 50%;

    margin: 0 auto 20px auto;

    }

    As I mentioned in one of my posts related to your project, you will probably have to make your product images a bit larger. They fill the area once they form a column to width of 768px screen or you could resist transform them to one column until a little more by using a media query extra set at a narrow screen width to evoke this action

  • Need help newbie Layout

    I'm normally a user After Effects and Premiere Pro, but were forced to volunteer to help on a project of Dreamweaver.

    The site is built on the model: HTML, 1 column, fixed, header and footer.  I want to be able to insert a photo of the width of the main column, 960 px I think.  Then, under this picture, I want to insert 4 pictures with different widths, between 150 and 200 pixels wide.  I will need to update it from time to time, and the quantity and sizes of the photos will be different every time.  If "Draw AP Div" worked as I expected to, it's simple: draw rectangles and insert images.  However, as you know, it won't be that easy.  I have read the page formatting101 and searched the forum, but I guess I don't know enough to know what to look for.

    Is it possible to place images in the way I want?  Do I need a plug-in?   I need to where to start.

    You don't need APDivs for this.  If you want the secondary images to be equidistant from the page, using CSS floats & margins.

    http://ALT-Web.com/demos/3-CSS-boxes.shtml

    If you do not need them spaced regularly, simply insert images optimized in your layout.  Don't forget to resize the images beforehand in your graphics editor so that their combined widths will fit inside the page layout.

    description

    description

    description

    description

    description

    Nancy O.

    ALT-Web Design & Publishing

    Web | Graphics | Print | Media specialists

    http://ALT-Web.com/

  • Z Index, overlay images, need help (crazy!)

    Need help on overlay images. As you can see, the "polaroid" a band on it - I want this band to overlap the menu bar.

    zindex.JPG

    The menu bar is a Graphic (there is a slight slope for her) and above it are the real menu graphics.  If I remove the menu graphics, photography rides very well.  But if I insert the menu chart, they are on top of the polaroid.  Thanks in advance for any help you can provide.

    Gary

    Here is the code for the page:

    SanDiegoHomegrown.com < h1 > < / h1 >

    < img src = "images/menuBar.gif" / > "

    < ul id = "menu bar" >
    < li = 'listen' id > < a href = "songs.html" > listen < /a > < /li > ""
    < id li = "submit" > < a href = "submit.html" > submit songs < /a > < /li > ""
    < li id = "seals" > < a href = "seals.html" > help < /a > < /li > seals ' "
    < li = 'about' id > < a href = "about.html" > Our Story? ' " < /a > < /li >
    < li = 'sponsors' id > < a href = "sponsors.html" > Sponsors < /a > < /li > ""
    < /ul >


    < div id = "polaroid" >
    < img src = "images/band2_polaroid.png" width = "280" height = "354" / > "
    < / div > <! - polaroid - >

    Here's the CSS:

    {#polaroid}
    height: 354px;
    Width: 280px;
    padding-left: 50px;
    margin-top:-40px;
    }
    {#menuBar}
    height: 30px;
    Width: 960px;
    padding: 0px;
    do-family: 'Courier New', Courier, monospace;
    list-style-type: none;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    margin-top:-30px;
    }

    #menuBar a {}
    Width: 175px;
    display: inline-block;
    color: #2F3032;
    text-align: left;
    vertical-align: 0%;
    margin: 0px;
    list-style-type: none;
    float: left;
    height: 35px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    text-indent:-9999px;
    }

    {#menuBar #listen
    background-repeat: no-repeat;
    position: absolute;
    background-image: url(images/titles/listen_bar_orig.gif);
    }

    {#menuBar #submit}
    background-image: url(images/titles/submit_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin left: 150px;
    Width: 200px;
    z-index: 1;
    }

    {#menuBar #seals}
    background-image: url(images/titles/seals_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin left: 375px;
    Width: 225px;
    }

    {#menuBar #about}
    background-image: url(images/titles/about_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin left: 625px;
    }

    {#menuBar #sponsors}
    background-image: url(images/titles/sponsor_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin left: 800px;
    }

    Auggh, just figured it out.  Polaroid should be relative positioning!

  • Can CSS FLOATS - someone point me to the great tutorial?

    I know the basics of tanks but have some problems.

    I searched for tutorials on google but didn't find exactly the awnser (or it was the site of technique to understand)

    I can do this:

    <div id="Container">
    <div id="Header"><p>HEADER</p></div>
    <div id="Menu"><p>Menu</p></div>
    <div id="Content"><p>Content</p></div>
    <div id="Footer"><p>FOOTER</p></div>
    </div>
    
    #Container{
    
    position:absolute;
    margin:0 auto; 
    width:80%;
    background:none;
    height:auto;
    height:100%; 
    min-height:100%;
    margin-left: 10%;
    margin-right: 10%;
    
    }
    #Header{
    height: 195px;
    width:100%;
    }
    #Menu{
    float: left;
    width: 172px;
    height: 75px;
    background: none;
    position: relative;
    }
    #Content{
    margin-left: 220px;
    height: auto;
    min-height:50%;
    width: auto;
    max-width:100%;
    min-width:77%;
    padding: 20px 20px 20px 20px;
    border-left: solid 1px #999;
    border-bottom: solid 2px #999;
    border-top: solid 1px #999;
    border-right: solid 2px #999;
    }
    #Footer{
    
    height: 50px;
    width:100%;
    
    }
    
    

    One of the problems is that the content is 100% of the contribution.

    So, if I fill it with a lot of text he lines out great, but if I get a single word in the div it will wrap the div arround the word.

    Normally I also happens to the height. But who is supposed to be.

    Is it with full text:

    __________________________

    | test test test test test test test.

    |_________________________|

    Is this single word:

    ____

    | test |

    |___|

    That should be:

    __________________________

    |test                                       |

    |_________________________|

    But I don't want a fixed width in pixels! I want to stretch a little so that it displays Nice on high resolution more low resolution.

    It's a bar of menus fixed floating to the left of the content. How should I deal with the content, so it will aways aligned at the end of the header?

    < HEADER > 100% width of the container

    < MENU > < CONTENT > fixed width 172px - remaining content needs to stretch so his double up the right headers.

    ________________________________________________________________________________________

    Also, I need to know how to deal with the floats in floats.

    My footers behavior wrong, if I make my small browsers window, the foot is under the content but its behind the menu.

    Its because I used Spry panels which are treated as fleet also. And I don't know how to clear the footer of content as well as the menu.

    For example, if I have the above configuration, and I want to treat the contained as a 'Container' new div which floats in it, how?

    Any help, links to good tutorials, etc. would be nice.

    If you see the problem of footer and align problem: http://www.wientjesvoegwerk.nl/

    Note the alignment of the content. Press "INFO" and notice the change of content. Its width is smaller then assumed. It must always have the same width.

    Now make your browser window small (always on the 'INFO' page) you just do the small width.

    Now, you will see the footer is behind the menu bar, but at the bottom of the content.

    So I need help or a good tutorial on how to solve this problem.

    5 types of CSS positioning:

    • Static (default)
    • Relative
    • Absolute
    • Fixed (similar to the absolute, but not supported by all browsers)
    • Float

    Learn CSS positioning in 10 easy steps-

    http://www.Barelyfitz.com/screencast/HTML-training/CSS/positioning/


    Float tutorials-

    http://CSS.maxdesign.com.au/Floatutorial/

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB
    http://ALT-Web.blogspot.com

  • Need help to diagnose the regular system analysis on iMac - processors maxed out

    I need help to identify the cause of a problem that occurs at least 2 - 3 times per day using my iMac (27-inch, mid 2010) running 10.11.5.

    I will use my iMac and then all at once things will start to really trolling. To the point of being completely unusable. Even if I'm able to move my cursor, then click to drag the windows around the screen nothing does really.

    I have iStat menus running so that can see graphics in my menu bar that all 4 cores are completely overfished. Occasionally, I was fast enough to launch the activity monitor to try to see what applications / services are responsible for, the use of % CPU column is completely empty of values, so I can't identify the culprits in a reliable way. I try to keep that column sorted by % CPU use in the hope that he could reveal something and normally it's the kernel_task who is up there.

    I use a Wacom Bamboo dated Tablet (MTE - 450 has) instead of a mouse, and at one point, I was convinced the pilot of PenTabletDrive it is based on was to blame. I contacted Wacom on this subject, and although there is no known issues they pointed out that although the latest drivers will allow me to use the tablet that they no longer support older devices. I was wondering if there was a problem of communication between the device and a driver that is no longer supported. I installed the latest driver supported for my tablet, but the problems persist.

    It may be interesting to note that, when my computer is in this semi-frozen state, I am able to launch the window enough force and quit all open applications leaving me with only the Finder. I guess that means that there are none of my apps running and it is probably one of the services. If I restart the Finder system grinds to a completely enclosed holt.

    I hope someone can let me know what I can find in the Console or elsewhere to help me finally zero in on what is to blame. I can share a log if that helps.

    Thank you in advance!

    Information that might be useful:

    Kept by I tend to be running: Adobe InDesign, Photoshop, Acrobat (all CC 2015), Mail, Safari with several tabs & Dropbox sync constantly.

    Download and run EtreCheck, created by one of his own assistants here in CSA. It is a diagnostic tool that is very useful for us to find problems. It will also give us additional specifications on your Mac. After his execution after the logfile here. It will never contain any personal information.

  • Can manage Windows XP Home Edition of Windows 8? Get the error codes for the security updates (0 x 643). ALL through Microsoft Tech INFECTED with the virus and Trojans tried. I need help BADLY. Thank you.

    I tried every thing blessed with technology microsoft... always hanging in limbo here.  Tired of doing constant comprehensive analyses, etc. in order to remove the constant threats.  Apparently my McAfee can't stay with her either.  Need help with the download/repair these seeds as soon as possible.  Thanks to all those who wish to help me - it would be that popular, for sure!

    The question makes no sense.

    "Can manage Windows XP Home Edition of Windows 8?"

    Two problems: there is no Windows 8 and even if there were, Windows XP Home Edition would not not 'manage '.  ;-)

    I drop McAfee for a few different freeware products.  Or better yet I'd get two products 'cost' (~ 25 and 60 dollars) and install them and use them in the future - but WHEN you are trying to clean up.

    You seem like you maybe sincerely - at a time when a format/install of Windows XP/patching/installation of applications/patch/restore backups of your data is the best course of action.

    However, if you are willing to work - maybe we can at least get things cleaned up to a certain point where you can get a good backup before doing this (otherwise avoid doing all together.)

    In the order shown, do not jump (no matter what you do, what you have done in the past, etc.) ...

    First of all - download, install, operate and put to update and then run a full system scan with the following two (one at a time, reboot in-between):

    After you perform a full scan with one then the other and remove anything they have all two are completely, you can uninstall these products, if you wish.  This initiative will allow to check there is no malware floating around your system which could cause problems.  If you ask - no, Norton probably does not protect you from what these applications can find.

    Download and run the MSRT tool manually:
    http://www.Microsoft.com/security/malwareremove/default.mspx
    (Ignore the details and download the tool to download and save to your desktop, run it.)

    Reset.

    Search online with eSet Online Scanner.

    Reset.

    Download/install the latest program Windows installation (for your operating system):
    (Windows XP 32-bit: WindowsXP-KB942288-v3 - x 86 .exe )
    (Download and save it to your desktop, run it.)

    Reset.

    and...

    Download the latest version of Windows Update (x 86) agent here:
    http://go.Microsoft.com/fwlink/?LinkId=91237
    ... and save it to the root of your C:\ drive. After you register on the root of the C:\ drive, follow these steps:

    Close all Internet Explorer Windows and other applications.

    AutoScan--> RUN and type:
    %SystemDrive%\windowsupdateagent30-x86.exe /WUFORCE
    --> Click OK.

    (If asked, select 'Run'). --> Click on NEXT--> select 'I agree' and click NEXT--> where he completed the installation, click "Finish"...

    Reset.

    Now try usig the Fixit (Yes - try to use it again) to reset your Windows Components Update (you'll do the aggressive version, not the other):
    How to reset the Windows Update components?

    Reset.

    CHKDSK
    How to scan your disks for errors* will take time and a reboot.

    Defragment
    How to defragment your hard drives* will take time

    Reset.

    Now, open Internet Explorer, visit http://windowsupdate.microsoft.com/ and do a CUSTOM search for updates.  Install any critical/high-priority ones and - for now - to ignore all those in option (always do this for material updates optional here.)

    Restart if necessary and continue to visit this web page until you have not yet updated to high priority.

    Now - if your problem is with the facilities of the .NET Framework...  You can end up with something like:
    http://blogs.msdn.com/b/astebner/archive/2008/08/28/8904493.aspx
    to uninstall a few versions of the .NET Framework, then you can try to install again - but you should not do this until the machine is supposed to be cleaned.

Maybe you are looking for