Is it possible and practical ?

Is it possible to insert a div tag in o a table layout and is
it advisable - I want to create a navigation bar with rollovers
inside a div tag.
The rest of my page is in tables
thanks again for all your help
Michael

If the div is absolutely positioned you should not insert it
directly into a
table cell - rather, you should place it into a relatively
positioned div in
that table cell, e.g.,
<td><div style="position:relative"><div
style="position:absolute">....
so that the browsers do not get confused about how to
position the div in
question.
Other than this problem regarding positioned divs there would
be nothing
problematic about placing a static div in a table cell.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"MichaelCo" <[email protected]> wrote in
message
news:eqe3eb$nsk$[email protected]..
> Is it possible to insert a div tag in o a table layout
and is it
> advisable - I
> want to create a navigation bar with rollovers inside a
div tag.
> The rest of my page is in tables
> thanks again for all your help
> Michael
>

Similar Messages

  • I would like to upgrade my OS to the latest version.  I now have 10.6.8 and my machine has 1Gb of memory.  Need 2Gb for the new OS.  Is is possible (and practical) to add memory to a machine that's five years old?

    I would like to upgrade my OS to the latest version.  I now have 10.6.8 and my machine has 1Gb of memory.  Need 2Gb for the new OS.  Is is possible (and practical) to add memory to a machine that's five years old?

    You can put two 2gb RAM sticks in your model 2,1 but it can only use 3,3gb. This is a hardware limitation and cannot be changed.
    http://en.wikipedia.org/wiki/3_GB_barrier
    http://www.everymac.com/systems/apple/macbook_pro/faq/macbook-pro-core-2-duo-3-g b-memory-limitation-details.html
    OWC tests have found that there is a slight speed increase with having two 2gb sticks in rather than one 1gb and one 2gb. Your model is in the gray lines at the bottom of the graph. http://eshop.macsales.com/shop/Memory_Benchmark/Apple_MacBook/
    You can buy Lion for $29 from the App Store witht a model 2,1 MacBook. Lion will require at least 2gb of RAM but really needs 4gb to run smoothly. As for programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table
    Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.
    These are good online stores for Mac compatible RAM
    OWC http://eshop.macsales.com/shop/memory/MacBook/DDR2/ - They offer Mac tested RAM at very good prices.
    Crucial Memory http://www.crucial.com/ - good place to buy RAM from all over the world. They also have an excellent memory selector that allows you to choose memory based on your computer's model
    Data Memory Systems http://www.datamemorysystems.com/apple-memory.asp - another good, cheap place to buying RAM if you live in the U.S.
    Here are instructions on replacing RAM in a MacBook with a removable battery. http://homeoffice.consumerelectronicsnet.com/articles/viewarticle.jsp?id=44404
    If you don’t have the tools to open up the MacBook OWC has a set for $5
    http://eshop.macsales.com/item/OWC/TOOLKITMHD/

  • Is non-functioning key repair possible and practical?

    I have a 2008 MacAir. The shift key on the right side and the return key either don't work or don't work reliably. Is it possible and practical to have them fixed?

    The device does report a IP address, and the 'Internet' indicator lights solid, but it appears that it cannot communicate out.  The Power LED blinks three times, repeated, indicating that it cannot connect to the Vonage server.
    Linksys EasyLink Advisor does not detect it being on the network.
    I also contacted Vonage Support, and they declared that my device is 'non-functional', so I am proceeding with a new device.
    Thanks for your help!

  • Is it possible (and practical) to use interactive Acrobat forms on an ipad or iphone?

    I would like to know if Adobe or anyone else has an interactive (acrobat-like) form that can be processed with an ipad or iphone using Adobe Reader or similar? If not, does anyone know if this might be possible in the near future? Thanks.

    The last several versions of Adobe Reader for iOS have some support for PDF forms (Acroforms, not XFA forms). They also have very limited support for JavaScript, which means the built-in formatting and calculation options mostly work, and you have a limited ability to do custom calculations. Readdle's PDF Expert has a good deal more support, but it's not free.

  • Is this possible or practical?

    Being a somewhat newbie  is  tryng to do the following possible or practical?
    I select 4 fields.
         Group - Qty - Size - Item   order by group
    AA  2
    S        AAS
    AA     3    M        AAM
    BB     1    XL       BBXL
    CC     1    S         CCS
    CC     4    L         CCL
    CC     2    XXL     CCXXL
    I am bringing the result set to a  vb webservice  where I want to display to the user just the group and sizes available(> 0) for that group.
    Group         Size (dropdownbox which contains the item number as the value)
    AA     S,M    (select values AAS, AAM)
    BB XL
    CC S,L,XXL    
      I have tried to manipulate this on the webservice side but with forward only, can't seem to get it. Didn't know on Tsql side, if I can get the individual group with the  size and associated item numbers for that group,into a single record for
    each group.
    thanks
    mark

    Yes, it is possible ,see an example below
    CREATE  TABLE  #mable(mid INT, token nvarchar(16))
    INSERT INTO #mable VALUES (0, 'foo')
    INSERT INTO #mable VALUES(0, 'goo')
    INSERT INTO #mable VALUES(1, 'hoo')
    INSERT INTO #mable VALUES(1, 'moo')
    SELECT m1.mid,
           ( SELECT m2.token + ','
               FROM #mable m2
              WHERE m2.mid = m1.mid
              ORDER BY token
                FOR XML PATH('') ) AS token
      FROM #mable m1
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I have two separate itune accounts under two different email accounts and would like to combine them under one account.  Is this possible and if so, how do I do it?

    I have two separate itune accounts under two different email accounts and would like to combine them under one account.  Is this possible and if so, how do I do it?

    If you go to Settings > iTunes & AppStore , you can sign out from your account, and sign in with the one you've used to purchase apps.This will not remove any apps you already have on it.
    Then you can go to AppStore and download apps you've purchased (either via "Purchased" button in "Updates", or simply search for them and download them.
    That way you can have multiple accounts' apps on your iPad. When updating, you will be prompted for the credentials for account you've purchased given App with.

  • HT4436 I both have iCloud accounts and would like to share photo's etc. Can any one please advise if this is possible and how to do it?

    My wife and I both have iCloud accounts and would like to share photo's etc. Can any one please advise if this is possible and how to do it?      
    I have a Macbook-pro and Ipad, my wife has a much loved ipad.

    It's all described in iCloud Help here: http://help.apple.com/icloud/#mmc0cd7e99

  • I'm trying to find out how to export my apple contacts to the Salesforce software and they need to be in a csv format and I don't know if this is possible and how to do it if it is?

    I'm trying to find out how to export my apple contacts to the Salesforce software and they need to be in a csv format and I don't know if this is possible and how to do it if it is?

    I think there are third-party programs which will do that, but you can also do it with Automator:
    See the links in my post, here: https://discussions.apple.com/message/22390873#22390873
    The file or clipboard contents will be in Tab Separated vars, so you'll have to open with a spreadsheet program and save as Comma Separated Vars format.

  • I have a Macbook Pro with OS 10.6.8 with no updates. Bundled is iPhoto 11, version 9.2.6. I would like to update my OS to 10.9.5 or later. Is this possible and which version is recommended?

    I have a MacBookPro with OS 10.6.8. It has no updates. This version contains Iphoto 11, version 9.2.3. I would like to upgrade my operating system to 10.9.5 or later. Is this possible and how best to proceed? How will this affect iPhoto?
    Thanks, Jeff

    If you have a mid/late 2007 MBP you can install the latest OSX that is available, on your MBP.  Mavericks (10.9) has been replaced by Yosemite (10.10) and is no longer available in the App store. 
    You choices are Lion (10.7), Mt.Lion (01.8) (both $20) or Yosemite (free).  The first two are available from the Apple online web site.  Yosemite can be downloaded from the App store.
    Ciao.

  • I am unable to initiate a video chat on facebook from a pc to a new ipad mini.  Is this possible and do I need a special app on my iPad?

    I am unable to initiate a video chat on facebook from a pc to a new ipad mini.  Is this possible and do I need a special app on my iPad?   Receivew a message on the PC after request a video chat with the iPad that the connection is too slow and the iPad does not show an incoming video.  JMaruje

    A Mac Mini s a computer you can use with the iPad.
    YO do not need a computer fro backup since yo can backup to iCloud.
    However, sometimes software glitches occur and require connecting the device to a compute to restore vi iTuunes.
    You can control a computer via an iPod with an app like TeamViewer or LogMeIn. There are others too.
    You can also use an iPad a a SECONDAY monitor for a computer. with other apps.
    You need a dedicated monitor,  keyboard and mouse to setup the Mini. You can use a PC USB mouse and keyboard.

  • Can Time Capsule be used as a time machine on a Windows Server.  Is this possible, and how do i configure this?

    I like to use the new TC in my office as a time machine on a Windows Server.  Is this possible, and how do i configure this?
    In fact my plan is to make the first back up by connecting to the server via an ethernet cable, but thereafter i like to bring the TC to my home and perform the incremental backups over the internet.  This is for safety reasons, in case for example the office is broken into, or flooded, or fire (god forbid).
    I sincerely hope it is possible, and not complicated.
    Alternatively i would not mind replacing our current Windows server 2003 with an Apple server, but all computers in the network (except mine) are Windows 7 or 8. Would it work?
    Thanks in advance.
    Paris

    I will consider the WD My Cloud device.
    It is a NAS.. it is designed to provide a cheap centralised file storage.
    What is NAS?? http://en.wikipedia.org/wiki/Network-attached_storage
    A file server like windows uses heaps of power to do very little.. in your setup.. In most setups like SBS it will do exchange server and provide a heap of useful connectivity to your clients.
    Since you are not using the windows server in anything but simple file serving you can replace with a NAS..
    Problem with the TC is, it is a router with a hard disk inside.. designed specifically for Time Machine.. it fails to provide what a NAS does.. easy access to any clients, local or remote.. TC is designed by apple for apple and the rest of world is not really invited to the party.
    It provides no backup.. no data protection.. and is so specifically apple orientated I do not think it works at all well with windows.
    For a simple example.. windows will have file issues with large files.. because it is only NTserver FAT32 to windows.. bad luck if you have large files.. !!
    Plainly if you use active directory in windows that facility is gone.
    I just like Apple products, find them more stable than Windows and easier to use.  Plus i can access the server from home if it is an Apple Server.
    If you only need remote access for yourself that is fine.. too bad for the windows clients I guess.
    Or you open it up to the world and bad luck for security.
    Apple do not design for mixed environment.. in fact with the TC there is no provision for windows access officially at all.. so anything you do is a fudge.
    You can use the TC for your Mac backups within the network.. that is fine. Apple provide no software at all to help with your windows clients.

  • HT5219 I would like to use my iMac 7,1 as a monitor for my Mac mini 2012. Is that possible and if yes, what type of cable connection do I need? Thank you.

    I would like to use my iMac 7,1 as a monitor for my Mac mini 2012. Is that possible and if yes, what type of cable connection do I need? Thank you.

    No. Your iMac only has DVI video connection. You would need an iMac with Thunderbolt.

  • I want to use my Mac desktop as a portal for viewing my cable television via some kind of cord. Is this possible and what do I need to set this up?

    I want to use my Mac desktop as a portal for viewing my cable television via some kind of cord. Is this possible and what do I need to set this up?

    It can be done with analog but not digital thanks to "good 'ol" HDCP copy protection which apple (and most other manufacturers) unfortunately respect.
    So you can take the analog output from your cable box (component -- 5 cables -- if it has it but generally they all have composite -- 3 cables) and feed it into some kind of converter or into some appropriate pci card for your mac pro.  But none of them are going to let you directly use the HDMI output from the box to your computer.
    Bottom line, no single cord is going to work and it will never be the higher quality digital picture you get on your tv.
    Some qualification:  There are boxes that I think support hdmi input.  Look at Blackmagic.  But I still don't think you can get around the HDCP from the cable box (might depend on the kind of cable box). 

  • I want to relocate my iTunes library on a NAS drive and stream to apple tv2 and DLNA tbs around the house is this possible and if so which is the best NAS drive to buy???

    I want to relocate my iTunes library on a NAS drive and stream to apple tv2 and DLNA tbs around the house is this possible and if so which is the best NAS drive to buy???

    ged2001 wrote:
    I want to relocate my iTunes library on a NAS drive and stream to apple tv2 and DLNA TV's around the house is this possible and if so which is the best NAS drive to buy???
    i don't have any experience with DLNA TV's but i recently moved my iTunes library to a NAS. streaming content to airport express remote speakers and TV2 works great. however, i have all my gear hardwired to my time capsule (except the airport express) so i'm not sure how well streaming e.g. HD movies to TV over wifi works.
    i have a Synology DiskStation 411j and am very happy with it.

  • I have to extract all files from a hard drive of a macbook pro that is no longer working. All I have to access the hard drive is a PC, is this possible, and if so how?

    I have to extract all files from a hard drive of a macbook pro that is no longer working. All I have to access the hard drive is a PC, is this possible, and if so how?

    You could try Paragon HFS+ for Windows. That would allow you to read and write files from a Mac-formatted drive.
    Clinton

Maybe you are looking for