Div tag with rollover btn white back ground issue

I am working strictly in css i made a #container and put a
rollover button in it. When I did this my back grown image can not
be seen in Firefox or safari, but still can be viewed in
dreamweaver. I attached my css code. and my css pallet in
dreamweaver looks like this
— body
p
a img
a
a:hover
#container

There is no code attached. Please paste it in along with the
CSS.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"tanktery" <[email protected]> wrote in
message
news:fn5d2h$pkl$[email protected]..
>I am working strictly in css i made a #container and put
a rollover button
>in
> it. When I did this my back grown image can not be seen
in Firefox or
> safari,
> but still can be viewed in dreamweaver. I attached my
css code. and my css
> pallet in dreamweaver looks like this
> ? body
> p
> a img
> a
> a:hover
> #container
>

Similar Messages

  • How to create a white back ground for Jpeg image to upload on various webites

    Hello, I have Photoshop Elements 11. I designed a book cover with Microsoft Word 2010 and saved the file as a Pdf. I want to upload an image of this book cover to various web sites that require a Jpeg image and the book cover has to cover at least 85% of the image and require a pure white back ground. Pixel size can be 1,000 or more. Can somebody help me? I did go to the library to get reference books but, I can't ascertain from these books how to do this. I am a beginner to Photoshop and realize I will have to get training for future projects. Thank you very much for any information you provide to me. I wanted to upload an image from my computer to show you the book cover but there was a dialogue box that appeared saying the file was too large to upload. The book cover I designed is 8.5' x 11.0"

    Wow! I can't thank you enough! There is not enough space here for me to express my gratitude for helping me! You are a saint! I had the Pdf files uploaded and stored in my organizer, so the images of the book covers appeared in the bottom of Photoshop Elements 11 Editor. I did exactly as you instructed, then sent the Jpeg  to Amazon and it uploaded in less than 5 minutes. The image could be a little bigger, but now I can utilize the software enough to tweak it.Thanks so much!!!! Any other ideas would be greatly appreciated. Take care and have a great 2013!

  • HT1414 There's no question IOS7 is advanced but the bright white back ground is a step backwards. It makes the iPhone harder to read.

    There's no question IOS7 is advanced but the bright white back ground is a step backwards. It makes the iPhone harder to read.
    In particular all photos or any slide show since the beginning of time have always had a black background. Not white. At the very least, the viewing of pictures should have a black back ground. I hope maybe you can introduce some gadgets or an upgrade that lets us choose something other than the bright white background. The accessibility option to inverse the video is awful. All your pics are negatives. I would hope you are hearing many similar comments and I look forward to an upgrade soon that gives us options to change that bright white.  If I could I would set my iPhone back to IOS6.
    The new IOS also kills your battery no matter it seems how many location services and other apps you disable.

    teeth444 wrote:
    There's no question IOS7 is advanced but the bright white back ground is a step backwards. It makes the iPhone harder to read.
    For some people. I find it easier to read.
    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback
    Best of luck.

  • Div tag with text and image verticaly centered

    I am having a problem with vertically aligning an image with
    a text line in a div tag using an external CSS file.
    Any help would be appreciated

    quote:
    Originally posted by:
    Night_Ripper
    You can simply do this:
    ProdDimensions img {vertical-align:middle;}
    Or you can use an un-ordered list that has your arrow
    embedded as a background image, something like this:
    .ProductList ul {list-style-image:
    url(Arrow.gif);list-style-position:outside;list-style-type:none;text-align:left;}
    .ProductList li {margin:0;}
    wrap your unordered list around a div with the class
    ProductList (or whatever you want to call it) and it will display
    with the arrows in the middle of the text.
    Another way to do it would be to set a background image on
    ProdDimensions class like this:
    background: url(Arrow.gif) left center
    no-repeat;padding-left:21px;
    That will simply put a background image to the left middle of
    your div, the padding will ensure the text is not on top of the
    arrow.
    I used your idea of using the arrow as the div bg and it
    worked like a charm.
    Thank you very much for your help!

  • A question mark folder appears on the start up after the sound ... with white back ground

    im using macbook pro 11in ... i had recently ungraded to os x lion through app store .... i was working on my laptop with firefox open .. i closed my macbook just as i normally do to make it go to sleep (not shutdown) ... i went hope i opend it and it was stuck .. nothing was moving ,.. there was this rainbow wheel instaed of the mouse arrow .. so i pressed and hold the power button and it got shut.. i opened it and now there is the question mark folder after the start up sound ... i dont have my snow lepoard dvds with me .. im traveling ... when i press the option key on the start up i dont get the recovery disk which was an option with the lion os x ... so now wat i do ... help help !!!!

    You can try a SMC and PRAM reset, but I think something got fried and your going to need to take it in for service.
    https://support.apple.com/kb/HT3964
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/26871.html

  • Problem with export/import in back ground

    Hi Experts,
    I am having a requirement in which i am exporting an internal table to memory from one program and importing that in another program. in foreground it is working fine. But in background it is not working. Is there any work around.
    Here is sample code.
    Program1:
    types:
      begin of tab_type,
        para type string,
        dobj type string,
      end of tab_type.
    data:
      id    type c length 10 value 'TEXTS',
      text1 type string value `IKE`,
      text2 type string value `TINA`,
      line  type tab_type,
      itab  type standard table of tab_type,
        itab1  type standard table of tab_type.
    line-para = 'P1'.
    line-dobj = 'TEXT1'.
    append line to itab.
    line-para = 'P2'.
    line-dobj = 'TEXT2'.
    append line to itab.
    free memory id 'TD'.
    export itab to memory id 'TD'.
    Program2:
    types:
      begin of tab_type,
        para type string,
        dobj type string,
      end of tab_type.
    data:
      id    type c length 10 value 'TEXTS',
      text1 type string value `IKE`,
      text2 type string value `TINA`,
      line  type tab_type,
      itab  type standard table of tab_type,
        itab1  type standard table of tab_type.
    refresh itab.
    import itab from memory id 'TD'.
    free memory id 'TD'.
    clear line.
    loop at itab into line.
      write: / line-para, line-dobj.
      clear line.
    endloop.
    Thanks,
    Jyothi

    Thanks for your links Venkat.
    My problem is solved by using the SHARED BUFFER.
    Here is the code i used inthe first program
            DATA: wa_invdata(10) TYPE c VALUE 'INVDATA'.
            DATA: wa_month(10) TYPE c VALUE 'MONTH'.
            DATA: wa_process(10) TYPE c VALUE 'PROCESS'.
            EXPORT wa_month_end TO MEMORY ID 'MONTHEND'.
            EXPORT e_process = it_inv_data[]
            TO SHARED BUFFER indx(st) ID  wa_process.
            EXPORT e_month = wa_month_end
            TO SHARED BUFFER indx(st) ID  wa_month.
            EXPORT e_invdata = it_tab[]
                TO SHARED BUFFER indx(st) ID wa_invdata.
         EXPORT it_inv_data TO MEMORY ID 'PROCESS'.
            DATA: number           TYPE tbtcjob-jobcount,
                  name             TYPE tbtcjob-jobname VALUE 'CRDR_ ',
                  print_parameters TYPE pri_params.
            CONCATENATE name
                    sy-datum
                    INTO name .
    *CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
       no_dailog              = 'X'
       archive_mode           = '3'
    IMPORTING
       out_parameters         = print_parameters
       out_archive_parameters = archi_parameters
       valid                  = valid_flag
    EXCEPTIONS
       invalid_print_params   = 2
       OTHERS                 = 4.
            CALL FUNCTION 'JOB_OPEN'
              EXPORTING
                jobname          = name
              IMPORTING
                jobcount         = number
              EXCEPTIONS
                cant_create_job  = 1
                invalid_job_data = 2
                jobname_missing  = 3
                OTHERS           = 4.
            IF sy-subrc = 0.
              print_parameters-pdest = 'locl'.
              SUBMIT zsd_crdr_monthend_back_process
                      TO SAP-SPOOL
                      SPOOL PARAMETERS print_parameters
                      WITHOUT SPOOL DYNPRO
                      VIA JOB name NUMBER number
                    AND RETURN.
              IF sy-subrc = 0.
                CALL FUNCTION 'JOB_CLOSE'
                  EXPORTING
                    jobcount             = number
                    jobname              = name
                    strtimmed            = 'X'
                  EXCEPTIONS
                    cant_start_immediate = 1
                    invalid_startdate    = 2
                    jobname_missing      = 3
                    job_close_failed     = 4
                    job_nosteps          = 5
                    job_notex            = 6
                    lock_failed          = 7
                    OTHERS               = 8.
    Second Program
    Program zsd_crdr_monthend_back_process.
      DATA: wa_invdata(10) TYPE c VALUE 'INVDATA'.
      DATA: wa_month(10) TYPE c VALUE 'MONTH'.
      DATA: wa_process(10) TYPE c VALUE 'PROCESS'.
      IMPORT e_invdata = it_tab[]
      FROM SHARED BUFFER indx(st) ID  wa_invdata.
      IF sy-subrc NE 0 OR it_tab[] IS INITIAL..
       No data found for the Month end processing
        MESSAGE s398(00)
           WITH 'No Data Found'.
        STOP.
      ELSE.
    found the data
        IMPORT e_process = it_inv_data[]
        FROM SHARED BUFFER indx(st) ID  wa_process.
        IMPORT e_month = wa_month_end
        FROM SHARED BUFFER indx(st) ID  wa_month.
    Thanks for your help.

  • On start up all that displays is a white back ground and a flashing ? Mark, help please

    ? Please Can somebody help please

    Restart while holding command and R keys down (two keys together).
    Select the Recovery HD icon and continue.
    Run Disk Utility.
    When DU is running, select your hard drive on the left, the First Aid tab at the top, and click Repair Disk.
    When that is completed, quit DU and restart.
    Full description here: http://www.apple.com/osx/recovery/

  • Back ground-issue

    Hi,
    Plz can anybody explain how to debug a Background scheduled report and also what are the common errors we face usually.

    Hi Kumari,
    Please check this thread
    How to debug a program running in background?
    Hope this would solve your issue.
    Note: Can you please close all the threads that you had posted which were solved and those you are not still looking into.
    Good luck
    Narin

  • Changing the back ground screen in Apex

    Hi guys  how do you change the back ground in an application from the normal white back ground to sort of incorporate some sort of wall paper to make it look better 

    In general this will depend on your theme.  But this CSS would work:
    body {background-color: #E3E3F0;}
    It changes the body tag, which is the whole page to a specific RGB color.
    Thanks
    -Jorge

  • In Flex, mimic a HTML DIV-tag without height constraint?

    Hi!
    I've posted a somewhat similar question here before and
    although the answer was appreciated I'm still wondering if what I
    want to do is possible.
    In HTML you can create a DIV-tag with a fixed width, say
    100px. If you, after that, let the height remain undefined, you can
    add content to the tag having it expand it's height appropriately.
    Is it possible to achieve the same effect in Flex, or do I
    have to have fixed width and height on the application? If I let
    the application have a width of 100px, letting the height be
    undefined, I get the application to be the same height as the
    browser window which is not the case with the DIV-tag above.
    Hope someone understands what I mean. Thanks!
    /Marcus

    If you do this:
    <mx:VBox width="100%">
    and then put things into this VBox container, it will grow
    vertically as much as it needs to without having a specific height.
    The Application tag is the same way. Eventually, when you exceed
    the visible part of the Flash Player, the Application (or VBox)
    will acquire scrollbars.

  • Dreamweaver Crashed on Mac when inserting Div Tags

    We are experiencing interface lock up when attempting to
    insert a div tag using the insert div icon on the insert common
    toolbar on our Mac G5's. After selecting Insert and attempting to
    select one of the insertion choices the machines lock up and have
    to be force quit...doing very simple div tags with simple styles
    for creating horizontal navigation...
    Body (Block Centered Padding and Margin set to 0)
    #wrapper (Block Aligned left Padding O margin set to 0 auto 0
    auto)

    Try downloading instead of using the disc.  CS3 - http://helpx.adobe.com/creative-suite/kb/cs3-product-downloads.html

  • Can you put a div tag on top of div tag that contains an image?

    i have a div tag with an image inside it, i would like to create another div tag and place a video inside this one. Is it possible to place the div tag with the video inside it on top of the div tag with the image inside it?
    Any help is very much apreciated

    Typically, a background image is placed in a division's CSS code.
    See example below: (view source in browser to see the CSS and HTML code)
    http://alt-web.com/DEMOS/fixed-background.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media   Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • AP Div Tag

    my ap div tag i want to be in a fixed position on the page however when i place my ap div tag with an image in it it moves around in my browser. how do i stop from moving around in internet explorer 7 browser?

    Hi! Thank you sooo much for responding...
    I did read on to find out what you had written below.
    I was trying to use AP Dive Tags to achieve the following for a navigation
    menu bar:
    Adobe Systems
    In the Dreamweaver Nav Bar section I was able to construct the Dark Blue
    panel of Home, About Us, Services, Careers, Contact Us & Staff with the
    mouse down being the Lighter Blue Home, About Us, Services, Careers, Contact
    Us & Staff.
    However, I wanted to add under Services the other items of Engineering, Land
    Planning, Environmental, Transportation, Utilities, Permitting &
    construction Management with mouse over the Lighter Blue Services button.
    I was trying to do this with an AP Div tag.
    Is there another way to accomplish this in Dreamweaver without too much
    difficulty.
    And.
    Would it be easier for me to construct this navigational bar in Fireworks
    and import it into Dreamweaver?
    Thank you for you kind help!
    Cheryl

  • Div tab with no carige return, is it possible?

    HI! Is it possible to have a div tag with no carriage return,
    I notice that
    if we have an text or an image and insert an div tag with
    content in it that
    in code view it will automatically add a carriage return (
    meaning that in
    design view that text or image is not in line with the
    content of the div
    tag).
    Is there a way around this. ( perhaps css? but how?).
    Paul

    Murray *ACE* wrote:
    > You're welcome, Paul.
    >
    >
    > "Paul" <[email protected]> wrote in message
    > news:[email protected]...
    >> Murray *ACE* wrote:
    >>> A block element (table, div, h#, hr, p, etc.)
    forces a new line on the
    >>> page within its container. An inline element
    does not. That's why you
    >>> can have adjacent images but not adjacent tables
    (using default
    >>> placements) or adjacent paragraphs. Thus, in the
    flow of the code on
    >>> the page, block elements begin on a new line,
    and push subsequent
    >>> content to a new line. But there is no carriage
    return involved - it's
    >>> just the way the page works.
    >>> By floating the block element, you 'remove it
    from the flow' in a way
    >>> that
    >>> does NOT necessarily force subsequent content to
    a new line. Multiple
    >>> adjacent divs, each floated left, will align
    across the page like
    >>> soldiers.... 8)
    >>>
    >>> Of course, you would have to clear the float
    afterwards to avoid layout
    >>> problems further down the page.
    >>>
    >>>
    >>> "Paul" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> Murray *ACE* wrote:
    >>>>> That would be one way. A better way
    would be to float the div,
    >>>>> leaving it
    >>>>> as a block element.
    >>>>>
    >>>>> div { float:left; }
    >>>>>
    >>>>> And there is no carriage return at all.
    All block elements sit on
    >>>>> their
    >>>>> own line - that's how HTML works.
    >>>>>
    >>>>>
    >>>>> "Paul" <[email protected]>
    wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Paul wrote:
    >>>>>>> HI! Is it possible to have a div
    tag with no carriage return, I
    >>>>>>> notice
    >>>>>>> that if we have an text or an
    image and insert an div tag with
    >>>>>>> content
    >>>>>>> in it that in code view it will
    automatically add a carriage return
    >>>>>>> ( meaning that in design view
    that text or image is not in line with
    >>>>>>> the
    >>>>>>> content of the div tag).
    >>>>>>>
    >>>>>>> Is there a way around this. (
    perhaps css? but how?).
    >>>>>>>
    >>>>>>> Paul
    >>>>>>
    >>>>>> HI! all, the solution to this and
    other block elements is to use CSS,
    >>>>>> you
    >>>>>> can specify a DIV to be an inline
    element.
    >>>>>>
    >>>>>> example:
    >>>>>>
    >>>>>> div {
    >>>>>> display: inline;
    >>>>>> vertical-align: bottom;
    >>>>>> }
    >>>>>>
    >>>>>> This will align text and a div next
    to it without a carriage return
    >>>>>> or line break.
    >>>>>>
    >>>>>> Here is another example of a block
    element behaving like an inline
    >>>>>> element.
    >>>>>>
    >>>>>> h1 { display: inline; }
    >>>>>>
    >>>>>> Well that's it. Hope this helps
    someone :)
    >>>>>>
    >>>>>> Paul
    >>>>
    >>>> HI! Thanks murray. btw what do you mean by
    "All block elements sit on
    >>>> their own line" as oppose to others that
    don't?
    >>>> can you explain a bit more. :)
    >>>>
    >>>> Paul
    >>
    >> HI! Thanks alot for the explanation. :)
    >>
    >> Paul
    HI! for some reason it did work with the code that I am
    using. I am using
    swfobject to insert a flash button. the swf code is using a
    div and when I
    tried using the float option the button was not displayed at
    all. I have
    inserted the swf code at the bottom.
    What I tried instead was to create a name for the tag
    selector and use it on
    the div that holds the flash button to be inlined.
    div.inlineflashcontent {
    display: inline;
    vertical-align: bottom;
    float: none;
    This way only the that div will be inlined. below is the swf
    code that I am
    using for the flash insertion. Do you know why the float
    option does not
    work with the code below?
    Paul
    ***********SWF code and script for flash insertion
    <div class="inlineflashcontent" id="flashcontent">
    Error! You either have jscript turned off or you do not have
    a flash
    plugin.<BR>
    <a href="Errors_warnings/flash_
    not_detected.asp">Click here to get
    plugin.</a></div>
    <script type="text/javascript">
    // <![CDATA[
    var so = new SWFObject("chat_goto_button.swf", "fotester",
    "83", "12",
    "8.0.22", "#FFFFFF", true);
    so.addVariable("flashVarText", "this is passed in via
    FlashVars");
    so.addParam("wmode", "transparent");
    so.write("flashcontent");
    // ]]>
    </script>
    ***************End of SWF code***************

  • None editable Div tag within a editable Div tag template

    I am using a template i created to build a website and the only editable Div is the 'Content'. Using this template i have created a 2nd template for a portfolio page. On my 2nd template i have a Div tag within the 'Content' Div tag with list of all the jobs i have  done with hyperlinked to photos. I want this list to be only editable on  the template so when i update the 2nd template rest of the files related to  this template get updated.
    Is it possible to have a none editable Div tag within an editable Div tag?
    I hope i have explained this well. Many thanks for your help

    Thank you for your respond.
    I have a main template with just the 'Content' Div Tag editable. Using this template i created anyother template for my portfolio page. Inside the editable Div Tag i have another Div Tag with 2 sets of tables for my portfolio lists. I want this Div tag to be only editable through the 2nd template only as i will have portfolio lists of over 30 pages/links.
    I selected the Div Tag with the 2 set of tables and selected 'Add Object to Library'. First message was that the CSS coding will not be copied but errors messages as follows;
    'While executing canInspectSelectio in phatfusion slideShow_FAB75CA2.htm, a JavaScript error occurred.'
    'While executing canInspectSelectio in Ken Burns Slideshow.htm, a JavaScript error occurred.'
    'While executing canInspectSelectio in Shadowbox3b Gallery_2528933A.htm, a JavaScript error occurred.'
    Everytime i click inside the Div Tag, i keep getting these messages.
    I went to the library and amended the list but only the 2nd template changed, not the related pages linked to the 2nd template.
    Is there a place where i can upload my page in this website so you can see it?
    Please see below the coding for the 2nd template for my portfolio pages;
    <!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"><!-- InstanceBegin template="/Templates/main_templateV4.dwt" codeOutsideHTMLIsLocked="false" -->
    <!-- saved from url=(0014)about:internet -->
    <!-- this and above comment should be removed for live, non-demo use -->
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <META NAME="robots" CONTENT="index, follow">
        <meta name="google-site-verification" content="a_way2ZMkNZuMTtOveF3o1bvtWsVMBQujbA5jw9i0Q0" />
        <META name="y_key" content="d38873598f3b3934" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>???s</title>
    <!-- InstanceEndEditable -->
    <link href="../_css/main.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
        <link href="../Galleria/galleria.css" rel="stylesheet" type="text/css" media="screen">
        <script type="text/javascript" src="../Galleria/jquery.min.js"></script>
        <script type="text/javascript" src="../Galleria/jquery.galleria-0.9.js"></script>
        <script type="text/javascript">
        $(document).ready(function(){ $('ul.gallery_demo2').galleria({nextText:'Next portfolio item'}); }) // activates the gallery
        </script>
        <style media="screen,projection" type="text/css">   
        p,.caption{
        font-size: 10px;
        color:#006;
        .demo2{
        position:relative;
        clear:both;
        background:black;
        width: 600px;
        .gallery_demo2{
        width: 600px;
        .gallery_demo2 li{
        width:68px;
        height:50px;
        border:thin solid #000;
        background:#111;
        padding-left: 5px;
        overflow: hidden;
        .gallery_demo2 li.active{
        border-color:#623;
        .gallery_demo2 li div{
        top:60px;
        left:0;
        border:3px solid #111;
        background:#111;
        .gallery_demo2 li img.thumb{
        opacity:.3;
        padding-left: 3px;
        .gallery_demo2 li.active img.thumb,.gallery_demo2 li:hover img.thumb{
        opacity:.99;
        </style>
        <!--[if lt IE 8]>
        <style media="screen,projection" type="text/css">
            .gallery_demo2 li img.thumb { filter: alpha(opacity=30) !important; }
            .gallery_demo2 li.active img.thumb, .gallery_demo2 li:hover img.thumb, .gallery_demo2 li img.hover { filter: alpha(opacity=100) !important; }
        </style>
        <![endif]-->  
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <!-- InstanceEndEditable -->
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        background-color: #FFF;
        background-image: url(../_images/background.jpg);
    </style>
    </head>
    <body>
    <div class="container">
      <div class="header">
        <div class="header2">
          <h4><strong>ARCHITECTURAL &amp; STRUCTURAL ENGINEERING SERVICES<br />
            PROJECT MANAGEMENT &amp; CONSTRUCTIONS</strong></h4>
        </div>
      <!-- end .header --></div>
      <div class="linkBar">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html">HOME</a></li>
          <li><a href="about.html">ABOUT US</a></li>
          <li><a href="service.html" class="MenuBarItemSubmenu">SERVICES</a>
            <ul>
    <li><a href="service.html">Overview</a></li>
    <li><a href="planning.html">Planning Permission</a></li>
    <li><a href="building.html">Building Regulations</a></li>
    <li><a href="partywall.html">Party Wall Act</a></li>
              <li><a href="schedule.html">Schedule of Work</a></li>
              <li><a href="project.html">Project Management</a></li>
              <li><a href="structural.html">Structural Surveys</a></li>
            </ul>
          </li>
          <li><a href="portfolio.html">PORTFOLIO</a></li>
          <li><a href="contact.html">CONTACT US</a></li>
        </ul>
      <!-- end .linkBar --></div>
      <!-- InstanceBeginEditable name="mainContent" -->
      <div class="content">
        <h3>PORTFOLIO- website under construction</h3><!-- #BeginLibraryItem "/Library/Untitled.lbi" --><div class="portfolioText">
          <h2 class="textSubHeading">Commercial</h2>
          <div class="portfolioCommercial">
            <table width="374" align="right">
              <tr>
                <td width="181" height="20">AA Partner Ltd</td>
                <td width="181" height="20">Railing London Ltd</td>
              </tr>
              <tr>
                <td height="20">Pemon Ltd</td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20">lhjffkhgkhg</td>
              </tr>
            </table>
    </div>
          <h2 class="textSubHeading"><br />
          </h2>
          <h2 class="textSubHeading"> </h2>
          <h2 class="textSubHeading"> </h2>
          <h2 class="textSubHeading"> </h2>
          <h2 class="textSubHeading">Residential</h2>
          <div class="portfolioResidential">
            <table width="374" align="right">
              <tr>
                <td width="181" height="20">Batchworth Lane, <span dir="ltr">Northwood</span></td>
                <td width="181" height="20">Derrylands, Harrow</td>
              </tr>
              <tr>
                <td height="20">Pine Walk, Surrey</td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20"> </td>
                <td height="20"> </td>
              </tr>
              <tr>
                <td height="20">teytdytyt</td>
                <td height="20"> </td>
              </tr>
            </table>
    </div>
        </div><!-- #EndLibraryItem --><div class="portfolioSlideshow">
          <p>Project Title Goes Here:</p>
          <div class="demo">
    </div>
    <div class="demo2">
    <ul class="gallery_demo2">
        <li class="active"><img src="../_images/portfolio/planning.jpg" alt="Planning sample drawing" width="600" height="400"></li>
        <li><img src="../_images/portfolio/building.jpg" alt="Building Reg sample drawing" width="600" height="400"></li>
        <li><img src="../_images/portfolio/structural.jpg" alt="Structural sample drawing" width="600" height="400"></li>
        <li><img src="../_images/portfolio/fabrication.jpg" alt="Fabrication sample drawing" width="600" height="400"></li>
    </ul>
    </div>
        </div>
      <!-- end .content --></div>
      <!-- InstanceEndEditable -->
      <div class="footer">
      <table width="1025" border="0">
      <tr>
        <td width="500"><h6>??? </h6></td>
        <td width="10"> </td>
        <td width="500" align="right"><h6>???</h6></td>
      </tr>
    </table>
      <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>

Maybe you are looking for