I would like an editor like this one.  Can I do this with dreamweaver?

I want to build an editor in my site with a login editor that looks like this one.  I tried the adobeincontextediting and it won'e let me change the text size, color or insert a table.  If I can just make one like the one on this page somehow with a login I would be so happy.
I built a site for my friend www.bigskyboxers.com and she wants to be able to edit it.  I put the adobeincontextediting in it but I can't get it to work.  Any suggestions?  Heidi 

As far as editing tables goes... they need to be VERY strictly formatted.
Please refer to this thread
        "Re: Editing a  Table using ICE"
I have more information on formating tables also on this thread:
        "Re:  Cannot save the selected regions"
Using your table, your code should look something like this:
<table border="0" width="600" bgcolor="#FFFFCC" background="images/hearts.gif" style="height: 350px">
<tbody ice:repeatinggroup="*">
  <tr ice:repeating="true">
    <td ice:editable="*" background="images/hearts.gif" >       <p align="center">       <img height="225" src="images/epicstack.jpg" /><br>
        OFA-Cardio Clear<br>
        Thyroid Normal</p>
      <p align="center"> <br>
      </p></td>
    <td ice:editable="*"><p align="center">       <img height="225" src="images/vindi2.jpg" /><br>
        OFA-Cardio Clear<br>
        SAS-Clear<br>
        Holter tested normal &quot;2 pvc's&quot;<br>
        Thyroid Normal<br>
    </td>
  </tr>
</tbody>
</table>
I added <tbody> tag, highlghted in blue. Look over the notes on structuring tables as to why.
That will solve your problem if you follow the guidelines I have there.
Problems are highlighted in red. User cannot change background images that are nested. That should be done with CSS anyway.
Also, note that I left out the table that this table is nested in... nesting tables will not allow you to do what you are trying to accomplish. You shold wrap the table in a "div" and alternatively make that <div> something like <div ice:editable "*">
The other code on the page has repeating regions, etc, BUT NO EDITABLE REGIONS... it sould look something like this:
<div ice:repeating="true" ice:editable="*">Content for new Repeating Region goes here</div>
Read through the info on tables and it will help you alot. Generlly, I would say avoid them & alternatively use properly styles <div>'s instead. But if you MUST use tables, structure them as I have & they'll cooperate with you.
Good Luck,
-Tom

Similar Messages

  • I would like to upgrade hard drive and start with clean OS how is this done?

    I have a mac book pro and would like to install a new hard drive with the latest OS. I dont care about previous data just a clean start. What is then best method to this approach?
    Thanks!!

    Command R you have access to Disk Utility and the OS install.
    http://mashable.com/2013/10/23/clean-install-os-x-mavericks/
    check your compatibility
    To install Mavericks, you need one of these Macs:
    iMac (Mid-2007 or later)
    MacBook (13-inch Aluminum, Late 2008), (13-inch, Early 2009 or later)
    MacBook Pro (13-inch, Mid-2009 or later),
    MacBook Pro (15-inch or 17-inch, Mid/Late 2007 or later)
    MacBook Air (Late 2008 or later)
    Mac mini (Early 2009 or later)
    Mac Pro (Early 2008 or later)
    Xserve (Early 2009)
    Your Mac also needs:
    OS X Mountain Lion, Lion, or Snow Leopard v10.6.8 already installed
    2 GB or more of memory
    8 GB or more of available space

  • I am a student who subscribed to the 9.99 photography package, I didn't realize there was a discount for students.  I would like to upgrade to the full package with the student discount.  I can not find the option for this. How do I do this?

    I am a student who subscribed to the 9.99 photography package, I didn't realize there was a discount for students.  I would like to upgrade to the full package with the student discount.  I can not find the option for this. How do I do this?

    Hi Djmontanalv,
    Please go through the link below.
    http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    Regards,
    Anand

  • I have a sequence on tcp that is Standard Def. I have a new set of files in High Def that match the old files. I would like to replace all the SD footage with the HD footage. Anyone know of a workflow to do this task?

    I have a sequence on tcp that is Standard Def. I have a new set of files in High Def that match the old SD files. I would like to replace all the SD footage with the HD footage. Anyone know of a workflow to do this task?

    Do a media manage of the sequence converting the files to the appropriate HD format making the clips offline.  Then simply reconnect the offline clips to the HD clips.  There may be issues in the file names, but they can usually be worked out either with the naming options in media manager or renaming your hd files.  There are many utilities that allow you to batch rename files. 

  • I would like this output

    Sorry I would like this output:
    PID PCODE P_NUMBER L_NAME USED     NEW
    191 TI4-35304     4-3530 POS     6     2
              TCC      0     1
    192 PI4-36701     4-3670 POS     4     23
    TCC     0     18
    193 TI4-34906     4-3490 POS     0     1
    TCC 0     4
    Basically I do not want to display the PID PCODE and P_NUMBER on each line if it is the same for the L_NAME.
    I tried this :
    SELECT CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID ORDER BY P.PRODUCT_ID) >1 THEN NULL ELSE P.PRODUCT_ID END "PID" ,
    CASE WHEN row_number() OVER(PARTITION BY P.PRODUCTCODE ORDER BY P.PRODUCT_ID) >1 THEN NULL ELSE P.PRODUCTCODE END "PCODE",
              CASE WHEN row_number() OVER(PARTITION BY P.PART_NUMBER ORDER BY P.PRODUCT_ID) >1 THEN NULL ELSE P.PART_NUMBER END "P_NUMBER",
                   Pkg_Locations.GetLocation(Pkg_Locations.GETLOCATIONIDFROMSUB(I.SUB_LOCATION_ID)) AS L_NAME,
              SUM(CASE WHEN I.USED =1 THEN I.AVAILABLE_QTY ELSE 0 END) AS USED,
              SUM(CASE WHEN I.USED =0 THEN I.AVAILABLE_QTY ELSE 0 END) AS NEW     
         FROM INVENTORY I,
         PRODUCTS P
    WHERE I.PRODUCT_ID = P.PRODUCT_ID
    GROUP BY P.PRODUCT_ID,P.PRODUCTCODE,P.PART_NUMBER,Pkg_Locations.GetLocation(Pkg_Locations.GETLOCATIONIDFROMSUB(I.SUB_LOCATION_ID))
    but it does not put all the values on the top line.

    Try this
    SELECT CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID  ORDER BY P.PRODUCT_ID) >1
                THEN NULL ELSE P.PRODUCT_ID END "PID" ,
           CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID, P.PRODUCTCODE ORDER BY P.PRODUCT_ID, P.PRODUCTCODE) >1
                THEN NULL ELSE P.PRODUCTCODE END "PCODE",
           CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID, P.PRODUCTCODE, P.PART_NUMBER ORDER BY P.PRODUCT_ID, P.PRODUCTCODE, P.PART_NUMBER) >1
                THEN NULL ELSE P.PART_NUMBER END "P_NUMBER",
    ...

  • I have bought Adobe DW CS4 on CD and would like this version for download to my new laptop. How can I access it for no extra charge?

    I have bought Adobe DW CS4 (a few years ago) on CD and would like this version for download to my new laptop. How can I access it?

    cecilia linhart wrote:
    would like this version for download to my new laptop.
    Why are you "downloading" if you have the CD?
    Check if CS4 will run onyour new machine
    System requirements | CS4, Point Products

  • Has Apple made any attempt to fix the 'no deleting apps on iCloud' yet? Would like this feature instead of going to Apple or having write them to get done.

    Has Apple made any attempt to fix the 'no deleting apps on iCloud' yet? Would like this feature instead of going to Apple or having to write them to get this feature. What's the point of having an iPad if you can't manage it. You get an app you thought you'd like, but don't &amp; now it's taking up space for another app that could be useful, if not better.

    Items showing as in the cloud on app store, do not take up any spce on either your ipad or on your icloud, it is stored in the app store cloud.
    The main reason to not delete is it is the history of what you have purchased, you can hide it from view if you would like.
    btw,, Apple Feedback Link
    http://apple.com/feedback

  • TS2551 I have problem opening this file. It just take hours and hours incircle but nothing happen. Please help ! I would like this app to be reinstall.

    I have problem opening this file. It just take hours and hours incircle but nothing happen. Please help ! I would like this app to be reinstall

    What file? Does this involve iPhoto somehow?

  • Hello I would like to ask I have a problem with the Iphone 3gs 32 g I don install the ios 6.0 and now I can not activate the sim card .... I do not even know what's centenary advise me thank you

    Hello
    I would like to ask I have a problem with the Iphone 3gs 32 g
    I don install the ios 6.0 and now I can not activate the sim card .... I do not even know what's centenary advise me thank you

    Did you already try the suggestions from this article?
    Symptoms
    In certain situations, iPhone may present one of the following symptoms:
    "Invalid SIM" or "No SIM Card installed" alert appears intermittently.
    Status bar displays "No Service", "No SIM" or "Searching" in a location with good network coverage.
    Resolution
    If you encounter any of the above symptoms on your iPhone, try these steps to attempt to resolve the issue:
    Update your iPhone to the latest version of iOS.
    Toggle Airplane mode On and Off.
    Try turning iPhone off and then on again.
    Check for a carrier settings update. Tap Settings > General > About. If an update is available, a prompt will appear.
    Remove the SIM Card and verify that it is a valid, carrier-manufactured SIM. Also verify that it is not damaged, worn, or modified. Then reinsert it.
    Restore the iPhone.
    copied from iPhone: Troubleshooting No Service or No SIM

  • I would like to pay for apple tv rentals with a different credit card from my iTunes Store. How can I do that?

    I would like to pay for apple tv rentals with a different credit card from my iTunes Store. How can I do this?

    Any purchases made from the iTunes Store, on your computer, AppleTV, or iOS device, use the same billing information that is associated with your account. To pay with a different credit card, log in to your account and change the payment options associated with your account. If you want to use different payment options on different devices, you may want to consider utilizing multiple iTunes accounts, each with its own payment options.
    To learn more about changing your iTunes account information, see this article: http://support.apple.com/kb/ht1918

  • Hello, i use premiere pro cc and i would like to uplaod my sequence in speedgrade with direct link but it's not available. I can see the option but it's not clickable, somebody knows why ?

    Hello, i use premiere pro cc and i would like to upload my sequence in speedgrade with direct link but it's not available. I can see the option but it's not clickable, somebody knows why ?

    Oh i'm not sure they are on same, i downloaded speedgrade this morning and i didn't upgraded premiere so it's maybe this ! thanks i will try it and let you know

  • I just set up my Time Capsule and would like to back up my old MacBook with Tiger (10.4.11) to it

    I just set up my Time Capsule and would like to back up my old MacBook with Tiger (10.4.11) to it so I can access the files with out taking up space on my new MacBook Pro.  Since I've purchased this time capsule I've heard that using it as a "server" it not ideal, but at this point I don't have a lot of other options.  Any advice on the best way to back up my old computer and be able to access these files from my new computer??

    Open Macintosh HD and look for the Time Capsule icon under the SHARED heading on the left side of the Finder window
    Click on the Time Capsule icon and a folder representing the drive will appear to the right. The folder will be named "Data" unless you have changed the name of the drive.
    You may need to click Connect As in the upper right hand corner of the window and enter the Time Capsule device password to get the folder to display the first time that you do this.
    Once the folder is displayed, double click the folder to mount the drive on the desktop. You can drag/drop files onto the icon. This is going to be very tedious, but it can be done.
    I would suggest that you look at an application like Carbon Copy Cloner to automatically backup the files that you select. Then you can schedule the applcation to automatically backup any files that have changed each day.
    More info here:   Carbon Copy Cloner - Home

  • I would like to set up an older iPad with a new messages account so it can be used by my kids.  I don't, however, want to lose the apps or music that are on the iPad. Can I change only the Messages "account"?

    I would like to set up an older iPad with a new messages account so it can be used by my kids.  I don't, however, want to lose the apps or music that are on the iPad. Can I change only the Messages "account"?

    Thanks. I had tried that, but was still having problems. Then I realized that I was using three addresses on both devices.  Once I changed it to only one email on one iPad and a different email on the other, it worked great. Your message encouraged me to dig deeper and think differently. It worked. Thanks again!

  • Using iphone 5 and 5c on ios7.0.4 and would like to use these on wireless only with no carrier service for voip apps.    how to i prevent the Iphone is not activated contact your carrier?

    Hi i am using iphone 5 and 5c on ios7.0.4 and would like to use these on wireless only with no carrier service for voip apps.    how to i prevent the error Iphone is not activated contact your carrier?

    tnguyen9 wrote:
    when i remove the sim card it gives me errors that there is no sim. 
    You should only need a SIM in it to actually activate it in iTunes.  Once activated, leave the SIM in or remove it, it should not matter.
    Then, turn on airplane mode.  And then, go into wifi settings and re-enable wifi (this leaves the cellular radio in airplane mode = powered off).
    Now your iPhone is effectively no more than a (wifi only) iPod Touch.

  • I have an iMac with 269 songs i would like to transfer music from my macbook with 10917 song s to the imac to free up space on the macbook without loosing my 269 song please help.

    I have an iMac with 269 songs i would like to transfer music from my macbook with 10917 song s to the imac to free up space on the macbook without loosing my 269 song please help.

    Welcome to the Apple Community.
    If both Macs are on the same network, enable homesharing, you can then import music from one to the other without affecting what's already on there.

  • I have two homes and I would like to keep my iPad2 in sync with my desktops in each home. How do I do that?

    I have two homes in two different staes and I spend time between the two. I would like to keep my iPad2 in sync with my desktops (PCs) in each of the homes as I travel between the two. When I try to sync with the second PC ( with my iTunes ID) it threatens to wipe out my iPad2. I just want to keep the two desktops and my iPad in sync. Please help.

    Put a copy of the most current iTunes Media library onto a USB hard drive. Replace the older library with the newer one. Repeat the process when you return to the other home.
    Or you can sync everything to iCloud where it is accessible anywhere you can connect via your Apple ID.
    iCloud Related:
    MobileMe: About moving to iCloud
    iCloud: Features that work with one account at a time on iOS 5 and OS X
    iCloud: How to back up iCloud data
    iCloud: Backup and restore overview
    iCloud: About storage buffering
    Using and troubleshooting Back to My Mac with your iCloud account on OS X Lion
    iCloud: Troubleshooting Find My Friends
    iCloud: Calendar Events, Reminders, To Dos, and Tasks behavior differs by application
    iCloud: Distinguishing between Calendars and Reminders
    iCloud: Troubleshooting iCloud Reminders and Tasks
    iCloud: Manually importing data from iCal to iCloud Calendar
    iCloud: Understanding where iCloud Calendars are displayed in iCal
    iCloud: Reminders are called Tasks in Microsoft Outlook on Windows
    iCloud: About the iCloud Web App Plugin for Internet Explorer
    iCloud: Troubleshooting web browser issues with icloud.com
    iCloud: Troubleshooting iCloud Bookmarks
    iCloud: How spam is filtered
    iCloud: Why was I spammed?
    iCloud: Keeping the Junk folder consistent between webmail and OS X Mail
    iCloud: How to get long email headers for iCloud accounts
    iCloud: About email aliases

Maybe you are looking for

  • Gradual slowdown of MacBook during the day--why?

    I run lots of programs all the time on my May 2006 MacBook 2.0 ghz core duo (first MacBook). However, it seems that after a restart the MB runs fine, but within 4-6 hours, and especially after 2-3 days, I have to restart since things are just running

  • Problem with with characters being interpreted wrong

    Hi, I am developing a website and currently when a search is made, all the occurancies of an apostrophie or a hyphen are being shown as a question mark. And the int value of them is -1. I think the person who put the content into the browser editor f

  • Add custom field in SOCO search

    hi i checked in webdynpro component of SOCO search screen i got below info Structure       /SAPSRM/S_CLL_WKL_SEARCH Method      /SAPSRM/IF_CLL_DODM_WKL_SEARCH~SEARCH View            V_WKL_SEARCH component /SAPSRM/WDC_DODC_WKL_SRCH now there is alread

  • Transferring existing Music onto another persons login in Windows XP

    Help! I have just purchased an IPOD NANO for my daughter. Transferring CD's into her ITUNES is no problem, ie disc in, import and the tracks are seen in ITUNES. The problem I have is when I Copy and Paste a music file from my ITUNES folder into my Da

  • Union of tables to give a spatial view

    I have a series of tables that i am trying to join together and display in a view. Some of them have a slightly different structure. They all have either a east/north, easting or northing, or a centrex and centrey. I then want the centroids for each