CSS mouseover image hover effect in iWeb?

I've been trying to create an image hover effect when placing the mouse over an image or clicking on the image on my website made in iWeb. The only problem is that the HTML widget doesn't allow the image hover effect to only activate when the mouse is over the widget and not the image. If anyone know some simple code I could put into my website's HTML file, it would be great. It actually doesn't have to be a hover effect, the image just has to change on mouseover.
My website is temporarily located here: http://dl.dropbox.com/u/19707357/Website/Chocoa/tavlen.html

I referred you to that page to see if the effect was what you wanted! The examples use javascript.
You originally asked for CSS and its better to use this since the browser only has to load one image instead of two.
Here's an example of a rollover using CSS and a sprite...
http://www.iwebformusicians.com/iweb-snippets/sprite.html

Similar Messages

  • Text / Image Hover Effects

    I am having trouble trying to figure out how to create a
    hover effect, that when you hover over some text, a Image will show
    up in a seperate
    table / cell. I have been able to map hover effects to
    specific places / positions, but I can't figure out how to get it
    to show up in a specific cell. To top it off I need to beable to
    get several images to show up in different cells when you hover
    over one piece of text.
    I am open to almost anything that can accomplish this, Java
    Script, PHP, CSS, etc.

    On Fri, 8 Dec 2006 05:27:10 +0000 (UTC), "Stupidav"
    <[email protected]> wrote:
    >I am having trouble trying to figure out how to create a
    hover effect, that
    >when you hover over some text, a Image will show up in a
    seperate
    table /
    >cell. I have been able to map hover effects to
    specific places / positions,
    >but I can't figure out how to get it to show up in a
    specific cell. To top it
    >off I need to beable to get several images to show up in
    different cells when
    >you hover over one piece of text.
    >
    > I am open to almost anything that can accomplish this,
    Java Script, PHP, CSS,
    >etc.
    It's called a disjointed rollover. If you Google that term
    you'll find
    lots of tutorial help. This is one:
    http://www.dwfaq.com/tutorials/basics/disjointed.asp
    Good luck.
    Steve
    steve at flyingtigerwebdesign dot com

  • Image hover effects with centred title

    Hi All,
    I would like to add to my images a nice slick looking image overlay which has the title of the product in the middle. Can anyone point me in the direction of a good one please. I have searched for a while now and cannot find one which has a vertically centred text in the middle of it.
    Any help would be greatly appreciated!
    Thank you.
    Alex

    Alex_roo wrote:
    Sorry another quick question. Can this be made to fit with a responsive design. I have just tried width and heights to auto but that doesn't work. Thanks again.
    Here's a quick tweak of Jons code.........still have to play around with vertically centering the text at various media query breaks, but it's responsive.
    <!doctype html>
    <html lang="en-us">
    <head>
    <meta charset="utf-8" />
    <title>Fade In Info</title>
    <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,300' rel='stylesheet' type='text/css'>
    <style type="text/css">
    body {
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    img {
    max-width: 100%;
    height: auto;
    #wrapper {
    width: 88%;
    margin: auto;
    overflow: hidden;
    .content {
    float: left;
    width: 46%;
    position:relative;
    margin: 0 2% 0 2%;
    .content p {
    opacity: 0;
    .fade{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align:center;
    vertical-align: middle;
    color:rgba(0,0,0,0);
    -webkit-transition: all 500ms;
    transition:all 500ms;
    .fade p {
    margin-top: 48%;
    color: #fff;
    .content:hover .fade {
    background-color:rgba(0, 0, 0, .35);
    color:rgba(0,0,0,1);
    opacity: 1;
    .content:hover .fade p {
    opacity: 1;
    @media screen and (max-width: 500px)
    .fade p {
    margin-top: 42%;
    @media screen and (max-width: 480px)
    .fade p {
    margin-top: 48%;
    .content {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div class="content">
    <img src="woman_face.jpg" style="display: block;">
    <div class="fade"><p>Some text or whatever</p></div>
    </div>
    <!-- end content -->
    <div class="content">
    <img src="woman_face.jpg" style="display: block;">
    <div class="fade"><p>Some text or whatever</p></div>
    </div>
    <!-- end content -->
    </div>
    <!-- end wrapper -->
    </body>
    </html>

  • Trying to do this cool hover effect with CSS only...

    I've got 'img' thumbnails that are sometimes positioned
    absolutely,
    sometimes relatively, but aren't individually contained in
    anything, like so
    <a href="#">
    <img src="image1.png" width="100" height="150" border="0"
    class="tn" />
    </a>
    <a href="#">
    <img src="image2.png" width="100" height="150" border="0"
    class="tn" />
    </a>
    Now, I've already brought up the limitations of PNG on IE
    (namely, even if
    you "fix" PNG support on IE, IE will flatten your alpha
    channels and strip
    the individual pixels' transparency levels before overriding
    them with a
    single common attribute). This limitation makes it impossible
    for me to do a
    simple 90%-to-100% hover effect to "highlight" the thumbnail
    on mouseover.
    Micha recommended placing normal a highlighted versions of
    the same
    thumbnail inside and outside the viewport, and swapping them
    on mouseover.
    However, that would double the amount of image data being
    sent to the user.
    So what I thought to do, instead, is superpose a standalone
    PNG of a small
    spotlight, OVER the original thumbnail, on hover. Because it
    would be the
    same PNG being superposed over each thumb being hovered over,
    the amount of
    image data being sent to the user wouldn't be all that
    different.
    Would I need javascript for this, or can it be done with CSS
    only?
    Again, it would be the same spotlight.png file being
    superposed on images on
    mouseover, and it wouldn't be a big deal if the image bled
    over surrounding
    images (it would actually make it look more real).
    Thanks.

    say wha???
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Nobody can disagree with that analysis, but a LOADING
    page would do
    nothing
    > to help with this, doncha know?
    >
    > --
    > 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
    > ==================
    >
    >
    > "Nancy O" <[email protected]> wrote in
    message
    > news:[email protected]...
    > > Sprite images are a tad smaller in filesize than
    the sum of their
    > > individual
    > > parts. As you say, Murray, it's marginal. But the
    real *efficiency*
    > > comes
    > > from fewer server requests to load multiple images.
    Once the sprite has
    > > loaded, there is no perceivable delay on hover - as
    there often is with
    > > conventional image swapping. Finally, since the
    substitution effect is
    > > pure
    > > CSS, there's no need for JavaScripts which can add
    weight to a page.
    > >
    > >
    > > --Nancy O.
    > > Alt-Web Design & Publishing
    > > www.alt-web.com
    > >
    > >
    > > "Murray *ACE*"
    <[email protected]> wrote in message
    > > news:[email protected]...
    > >> By their nature, sprites are larger
    dimensionally than the individual
    > >> images, so the savings would be marginal, I
    think. What I mean by that
    > >> is
    > > a
    > >> simple rollover sprite would be the same size
    as the combined up and
    over
    > >> images, placed adjacent to each other, no?
    > >>
    > >> --
    > >> 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
    > >> ==================
    > >>
    > >>
    > >> "Nancy O" <[email protected]>
    wrote in message
    > >> news:[email protected]...
    > >> >< Micha recommended placing normal &
    highlighted versions of the same
    > >> > thumbnail inside and outside the viewport,
    and swapping them on
    > > mouseover.
    > >> > However, that would double the amount of
    image data being sent to the
    > >> > user.>
    > >> >
    > >> > Not if you use a sprite. Have a look at
    this CSS Sprite Demo.
    > >> >
    http://alt-web.com/CSS-Sprite-Demo.html
    > >> >
    > >> >
    > >> > --Nancy O.
    > >> > Alt-Web Design & Publishing
    > >> > www.alt-web.com
    > >> >
    > >> >
    > >> >
    > >> > "Mike" <[email protected]> wrote in
    message
    > >> > news:[email protected]...
    > >> >> I've got 'img' thumbnails that are
    sometimes positioned absolutely,
    > >> >> sometimes relatively, but aren't
    individually contained in anything,
    > > like
    > >> > so
    > >> >> :
    > >> >>
    > >> >> <a href="#">
    > >> >> <img src="image1.png" width="100"
    height="150" border="0"
    class="tn"
    > > />
    > >> >> </a>
    > >> >> <a href="#">
    > >> >> <img src="image2.png" width="100"
    height="150" border="0"
    class="tn"
    > > />
    > >> >> </a>
    > >> >>
    > >> >> Now, I've already brought up the
    limitations of PNG on IE (namely,
    > >> >> even
    > >> >> if
    > >> >> you "fix" PNG support on IE, IE will
    flatten your alpha channels and
    > >> >> strip
    > >> >> the individual pixels' transparency
    levels before overriding them
    with
    > > a
    > >> >> single common attribute). This
    limitation makes it impossible for me
    > >> >> to
    > >> >> do
    > >> > a
    > >> >> simple 90%-to-100% hover effect to
    "highlight" the thumbnail on
    > >> >> mouseover.
    > >> >>
    > >> >> Micha recommended placing normal a
    highlighted versions of the same
    > >> >> thumbnail inside and outside the
    viewport, and swapping them on
    > >> >> mouseover.
    > >> >> However, that would double the amount
    of image data being sent to
    the
    > >> > user.
    > >> >>
    > >> >> So what I thought to do, instead, is
    superpose a standalone PNG of a
    > >> >> small
    > >> >> spotlight, OVER the original
    thumbnail, on hover. Because it would
    be
    > > the
    > >> >> same PNG being superposed over each
    thumb being hovered over, the
    > > amount
    > >> > of
    > >> >> image data being sent to the user
    wouldn't be all that different.
    > >> >>
    > >> >> Would I need javascript for this, or
    can it be done with CSS only?
    > >> >>
    > >> >> Again, it would be the same
    spotlight.png file being superposed on
    > > images
    > >> > on
    > >> >> mouseover, and it wouldn't be a big
    deal if the image bled over
    > >> > surrounding
    > >> >> images (it would actually make it look
    more real).
    > >> >>
    > >> >> Thanks.
    > >> >>
    > >> >>
    > >> >
    > >> >
    > >>
    > >
    > >
    >

  • Is it possible to have a hover effect easing out on multiple images when hovering on others?

    Im trying to use four small images to create a large image by using a hover effect. However when i hover over an image for instance 3 of 4, after hovering over 1 and 2, number 1's ease-out effects snaps back to the background image, rather than continuing to ease-out. Which i do not want. Is it possible to have numerous ease-out effects working at the same time? Using CSS.

    Could you show us a bit more of what you've done so far?
    I'm not sure I understand the desired result.
    Can you put your files online somwhere?
    Thanks

  • Tutorial: Custom CSS and hover-effects in Adobe Muse CC

    Hi everyone,
    Today I figured out how to work with custom CSS in Muse, being able to apply styles to elements on the page according to their class names. In case it would help others, I've done a write up of how I did this with hover effects using the hover.css library. You can read the tutorial over on my Medium blog:
    Tutorial: Hover effects in Adobe Muse
    Hope someone finds it useful!

    It's so cool

  • CSS and images

    I am trying to get a border on my images to give them space
    before the text.
    I assume that I apply a rule in my CSS on all images?
    I have used the following
    img {
    border:thin;
    padding: 5px 5px 5px 5px;
    color:#660033;
    This works great in my DW window but doesn't show up in my
    browser or
    page?
    Do I also need maybe the background color?

    Hello,
    Give this a try, and adjust values as needed:
    img {
    border: 2px solid #660033;
    padding: 5px;
    margin: 5px;
    Also, take a look at that page in FireFox.
    The hover effect on your image links at the bottom doesn't
    work.
    You need to apply the hover effect to the img inside the link
    and not just
    the link.
    It only works in IE because IE is doing it wrong. IE
    stretches the link
    border around the image, but FF does it correctly by applying
    the border
    only to the link. That means the border area is only as tall
    as the line
    height of the link, so it doesn't show around the taller
    image.
    Here's an example of applying a border hover effect to an
    image link:
    a.blah img{
    border: 3px;
    border-color: #CC0099;
    border-style:solid;
    a.blah:hover{
    background-color:transparent;}
    a.blah:hover img{
    border-color: #33FFFF;
    <a href="#" class="blah">test<img src="mypic.gif"
    width="100" height="100"
    border="0" /></a>
    Why the a.blah:hover img {background-color:transparent;}rule?
    That's to fix a bug in IE6 and lower, where you cannot apply
    a hover rule to
    an image link without first declaring a hover rule for that
    link.(Go
    figure!) If you don't, the border doesn't change color on
    hover.
    Take care,
    Tim
    "Pakman36" <[email protected]> wrote in
    message
    news:fo7cv6$nur$[email protected]..
    >I am trying to get a border on my images to give them
    space before the
    >text. I
    > assume that I apply a rule in my CSS on all images? I
    have used the
    > following
    > img { border:thin; padding: 5px 5px 5px 5px;
    color:#660033; } This works
    > great
    > in my DW window but doesn't show up in my browser or
    >
    http://uk.geocities.com/dakinidebbs108/
    Do I also need maybe the
    > background
    > color?
    >

  • I need to create a mouse hover effect on this map?

    I need to create a mouse hover effect on this map.
    Where the areas in (yellow or blue) will highlight or change color as the mouse lays on top. I have tried many things I dont seem to get it to work. Can someone help me?
    Link: http://sawpm.businesscatalyst.com/plan-de-ventas.html

    Hi there.
    You'll need to place something on top of it and play with opacity.
    - Imagine you have an inverted color version of your building A in a clipped-transparent PNG - it has to be the exact size, so it fitts nicely
    - Then you put that PNG on top of your map on the exact location of your building A
    - Convert it to a symbol
    - Inside the symbol:
      - Put a trigger at 0ms and 500ms with the following code: sym.stop();
      - Create an animation (with your building A image) with, say, 250ms, were it begins at 125ms with 0% opacity and at the end - 375ms - with 100% opacity. Put a label in the begining (250ms) saying mouseover and another at the end (350ms) saying mouseout
    - Click on the actions  of the building A image (the one with the inverted color or something similar) and choose "mouseover". write the following code: sym.play('mouseover');
    - Go to the actions again, choose "mouseout" and write the following code: sym.play('mouseout');
    That's basically it.
    pmfr

  • Hover effect not shown in design view

    Is there a setting that will allow me to see the hover effect I created in CSS? The cursor doesn't even turn to a hand so I imagine that cursor effects probably don't work either.
    Is there a setting or something so I can see them? Right now I open Homesite and view it there.
    I also noticed that Ctrl+B doesn't make selected text bold/strong nor Ctrl+I italic. Is that another setting?
    I love Dreamweaver because it hjas enhanced some Homesite stuff but the things it dropped are frustrating.
    Thanks for your help!

    To see rollovers, hover effects, etc.. you need to save your page (Ctrl+S) and Preview in Browser.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Links in mouseover images to change with the images

    I have created a page with mouseovers on page headings that affect the main page image -- mouseover image 1 and the main image changes, mouseover image 2 and the main image changes again etc.
    I have set the mouseovers not to revert on mouseout, so the mouseover images remain until you mouseover another of the heading images.
    I need to set up links within the main images using image maps (I'd like to have mouseovers in there too, but have no idea if this is possible), links that change depending on which of the images is currently showing. How can I do this?
    thanks in advance.
    Dreamweaver CS3
    Mac OS X 10.5.8
    imac 2.8ghz extreme intel core duo
    4gb ram
    1tb internal, 2x1tb external

    Just speculating here, but as long as you bring in the images to which you want to add the image-maps as foreground (not background) images, you should be able to do this.
    That is, set up a "show/hide" behavior and not a changing background image (CSS). Background-images are just that, background, and they don't (as far as I know) have any events associated with them to which to attach behaviors.
    You will have to set up the image-maps while the image is 'showing', of course. So before you set up the show/hide, expose the image, apply the image maps, then set up the show/hide.
    Let me know if this works out for you!
    Beth

  • Control mouseover image does not display when contained in an array of clusters.

    I have been using system booleans (with some customization) for the ability to impement mouseover animations.  For example (default system booleans):
    The mouseover feedback works well with my UI, and for the most part everything is going great.
    However, the mouseover image does not load if the the boolean is contained within an array of clusters (a single cluster with the boolean inside or an array of booleans works as expected):
    The mouseover animation does work for a single array element in the above case (the one which was most recently clicked), but this behavior isn't desirable and it seems buggy if I were to leave this on my UI as it is.
    So I guess I'm just wondering if anybody has encountered this or has any suggested workarounds?  The few that I've thought of so far (maintain a separate array for any set of system boolean controls, check coordinates myself on mouse move event and try to update the proper element in the array, avoid using mouseover animations entirely for this set of controls) aren't all that desirable.  Even though this issue could be considered cosmetic, the UI is very important to me as this code is something shipped to customers.
    This is LV 2011 by the way, so if by some chance the behavior in 2012 is correct please let me know (this alone might be reason enough to convert the project up).  If there is a CAR ID for this behavior and an NI employee wishes to share it I would also appreciate that.
    Best Regards,  
    John Passiak
    Solved!
    Go to Solution.

    Hey Jason,
    A reproducing VI would be any VI that contains an array of clusters with a system control boolean inside.  Here's an example:
    Single Boolean, Single Cluster, and Array of Booleans all show the proper mouseover image.
    Array of Clusters always shows the mouseover effect on the last element which was clicked, but does not show the mouseover effect on other array elements (actually, it seems to be inconsistent--every now and then it does show the mouseover effect on other array elements but it is not at all reliable).
    Best Regards,
    John Passiak
    Attachments:
    MouseoverTester.vi ‏9 KB

  • IE 8 not able to see image reflections created in iweb 08. What can I do?

    IE 8 cannot see the reflection of images on webpages created in iweb 08. Firefox sees' them fine. I am using a web style that automatically reflects the inserted image below it on the Welcome' page and 'All about me' page. However after publishing, most PC/IE 8 users only see the reflected image as a solid image repeat directly underneath which then covers up the text below. Is there anything I can do other than unticking the reflection box in the graphic inspector box? This is a pity as it's a really nice feature. Can anyone help?

    Bonjour
    Before beginning, you need an image with a reflection effect in iWeb
    1. Publish, visit your website with Safari
    Make a selective screenshot of your image and its reflection in Safari (sometimes the colors are not the same in iWeb and Safari - you need the colors showed in the Browser)
    and replace your original image by this screenshot in iWeb.
    Publish
    Now you have a JPG file published in your website (if you don't add a mask, a rotation or a flip to this image)
    or
    2. copy your image in iWeb
    open Preview
    cmd N
    You can see your image with its reflection in Preview.
    show the Preview sidebar
    drag and drop the thumbail from the Preview sidebar to iWeb
    Now you have a PNG file published in your website
    I prefer the first way to do because I will publish a JPG file and not a PNG. PNG makes a big file.

  • Exporting "CSS and images (.htm.)" from Fireworks CS4?

    Is this an effective process for developing CSS based layouts? Are there any proven tricks to improve the quality of the resulting structure?

    It's a starting point, but it does not exempt you from understanding 
    XHTML and CSS. Currently there are some limitations to what the script 
    will export: it ignores additional states, javascript behaviors and 
    won't export more than 1 page at a time. Keep in mind this is just the 
    "first kick" and we'll no doubt see this feature embellished.
    I recommend that you download and read about the updated CSS and 
    Images export script, modified by Matt Stow. You can find the new 
    script and his article here:
    http://www.adobe.com/devnet/fireworks/articles/standards_compliant_design.html
    The article also provides some tips on how to best plan your designs 
    if you plan to use the script.
    HTH
    Jim Babbage
    NewMedia Services
    http://www.newmediaservices.ca
    Community MX Partner -
    http://www.communitymx.com/author.cfm?cid=1036
    Adobe Community Expert
    http://www.adobe.com/communities/experts/members/206.html
    Author - Lynda.com
    http://movielibrary.lynda.com/authors/author/?aid=188
    Author: Peachpit Press
    http://www.peachpit.com/store/product.aspx?isbn=0321562879

  • Hover effect... made larger

    Hi... not the biggest web genius but know a little. I've set up a hover effect on some links to show a blue background when you roll over. The 'blue' surrounds the type pretty tight... the highlight colour  surrounds the text above and below but not the sides. This may not make much sense but if i direct you to this site:
    http://www.maaku87.co.uk/
    ... and tell you that when you hover over a link the surrounding grey box is a lot larger than the text. My hover effect doesn't produce a box as large as this. There is no colour bleed to the sides of the type just above and below.
    Can anyone tell me how i can produce the same result as this site?
    thanks

    Add some padding, line-height, width in ems and display:block to your menu code.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Vertical List Menu</title>
    <style type="text/css">
    #vertical li {
    list-style: none;
    font-size: 14px;
    text-align:center; /* adjust as desired */
    #vertical li a {
    display: block;
    text-decoration: none;
    font-weight:500;
    width: 8em; /* adjust as needed */
    line-height: 3em; /* adjust as needed */
    padding: 5px; /* adjust or omit */
    /* optional borders & colors */
    border: 1px solid #AAA;
    background: #DDD;
    color:#333;
    /**menu style on mouse-over/focus**/
    #vertical li a:hover,
    #vertical li a:focus,
    #vertical li a:active {
    background: #666;
    color: #FFF;
    </style>
    </head>
    <body>
    <h3>Vertical List Menu</h3>
    <!--Begin Vertical Menu-->
    <ul id="vertical">
    <li><a href="#">Item One</a></li>
    <li><a href="#">Item Two</a></li>
    <li><a href="#">Item Three </a></li>
    <li><a href="#">Item Four</a></li>
    <li><a href="#">Item Five</a><li>
    <li><a href="#">Item Six </a></li>
    </ul>  <!--end vertical menu -->
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Hover effect without it actually being a link?

    I have some text that displays more text when you click on
    it, and FAQ script. To help users know that it will do something I
    wanted to make it act like the other links on my page that bold
    when you mouse over them. I achieved this by putting a # for a link
    location. Worked great but then I realized that its now refreshing
    the page bumping you up to the top and loosing your spot.
    Is their away to to get the hover effect without it actually
    being a link?
    http://www.ewdcorp.com/services_environment.html

    "c-fqgy" <[email protected]> wrote in
    message
    news:fqrsg8$t82$[email protected]..
    > Hi Tierry,
    > Well that?s disappointing to hear! I actually tried
    working with your
    > script
    > when I first went looking for an FAQ style toggling menu
    but at the time I
    > couldn't get it to work. I think at the time it was just
    intimidating to
    > me
    > because I didn't fully get it. Since working with this
    other script,
    > through
    > trial and error I think I have a better grasp of how it
    works and reading
    > your
    > article seems far more straight forward (not that it
    wasn't before).
    > Anyways I
    > will take your suggestion and hopefully be able to fix
    my error.
    >
    > Just to be clear though, do you mean I should reconsider
    my sites
    > construction
    > because I have surrounded it with extra formatting crap
    or is it actually
    > the
    > way the actual Javascript that I have in my head tags
    that isn?t correct?
    To be honnest with you I don't know about your site
    construction, I only
    peeked at your DT, that's why I pasted the following in my
    previous post:
    <dt class="text_body" style="cursor: pointer;">
    <span style="font-family: monospace;"></span>
    <img width="11" height="8" alt=""
    src="images/Bullet.jpg"/>
    <u>
    <a href="#">Contaminated Site Remediation Design and
    Management</a>
    </u>
    </dt>
    The inline styles and the empty span are not "elegant", but
    that's ok. The
    problem is that a DT cannot contain a UL and a UL cannot be
    LI-free.
    Also, you have BR elements between your DTs/DDs if I recall
    and that's not
    kosher either.
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    Keep your markup *clean* with these DW extensions and
    scripts:
    http://www.divahtml.com/products/scripts_dreamweaver_extensions.php

Maybe you are looking for

  • Needing a 'print preview' capability for HP Officejet Pro 8600 (model N911a)

    Please provide a 'print preivew' capability via the HP 'print window' for the 8600 Pro. I purchased this machine in early April 2014 after the prior printer (photosmart 410) 'threw-up' ink inside the printer.  The software with that Photosmart 410, p

  • Double buffering daqmx

    I understand that DAQmx is supposed to do double buffering automatically.  When I run the example below in continuous mode, It will run continuously without error.  when I hit stop, it will give me a "Not enough memory to complete this operation." er

  • Want to organize library by "album", not "album by year"

    I had my library organized by "album". I closed itunes, started back up, and now it appears as "album by year" (even though the right-click drop down menu lists it as just "album". I have tried closing itunes, restarting the computer, and downloading

  • Restore addressbook and calendar

    I stupidly tried to import my old system's addressbook and calendar to my G5 running 10.5.7 and lost all the data and the apps don't work anymore! Do I have to do clean reload of Leopard to restore the addressbook and calendar, or is there a way to j

  • Premiere and After Effects won't download

    I downloaded the CS6 desktop access and when I opened it, I downloaded the trial to Photoshop without a problem. I then tried to download Premiere and I couldn't find it, so I went on CS6 online and found Premiere so I clicked "Download trial" and no