Does deleting paragraph styles affect documents which used a deleted style?

Assume you have a web page or site made with paragraph styles.
You start a new page in that site but decide to delete a bunch of paragraph styles which you  no longer want
The style should be in the html of the earlier documents and deleting the style should not delete the existing HTML.
But with Muse you never can be sure.
So is it ok to clean up the clutter and delete a bunch of old styles when creating something new or not?
Please do not respond unless you actually know the answer. No guesses please.

Hi Jkijki,
If you have created a paragraph style and applied to a paragraph, when you try to delete that paragraph style you will get option to replace the paragraph styling with another style (if there exist any):
Check this link: http://prntscr.com/3p9c5x
Regards,
Gaurav Aggarwal

Similar Messages

  • Deleting paragraph tags that are in use is allowed in FM 9!

    Has anyone besides me noticed that FM 9 allows you delete a paragraph tag in a document even though the paragraph tag is in use? I've found that the result of deleting the tag is that text with that tag is unaffected and even still has the deleted tag applied to it. However, the tag is no longer selectable from the paragraph tag list. FM8 would prompt would warn you that its in use before you attempt to delete it.
    The above behavior is at least the case for documents that I've used that were originally created in FM 8. Anyway, this lack of warning makes it darn impossible to efficiently remove unused tags from a document.
    Thanks.
    -Kurt Euler

    kdeuler wrote:
    Has anyone besides me noticed that FM 9 allows you delete a paragraph tag in a document even though the paragraph tag is in use? I've found that the result of deleting the tag is that text with that tag is unaffected and even still has the deleted tag applied to it. However, the tag is no longer selectable from the paragraph tag list. FM8 would prompt would warn you that its in use before you attempt to delete it.
    Kurt,
    I'm not sure why you think that FM8 has been different… it isn't. Every version of FM has always allowed to delete paragraph styles, no matter if they are used or not. Paragraphs using the (deleted) format are now shown with an asterisk, like an overidden format, while keeping all attributes.
    This is why 3rd party vendors like ITL sell FrameScript scripts, which only delete unused styles and objects from documents.
    Bernd

  • Unable to follow links in pdf document which use asynchronous pluggable protocol on Windows unless we disable extended security completely (Reader 11.0.7) - is there any other way round this?

    We have a pdf document which contains links of the format appname://some/path.
    This is using Windows Asynchronous Pluggable Protocols which we have defined in the registry so these links should launch the application with the path as an argument.
    If we disable enhanced security in Reader 11.0.7 then this works - otherwise it just fails to do anything.
    With enhanced security on, we get warning and select trust this site for all pdfs.
    Adobe then stores the first part of the path i.e. for appname://some/path it will store path in [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\TrustManager\cDefaultLaunchURLPerms].
    Don't get warning after that but the application still doesn't launch if enhanced security is enabled.

    Apologies was mislead - it's not enhanced security which is causing the issue, it is protected mode.

  • How to delete the data from KNVP without using the delete statement

    Hello friends,
    I have a requirement that I have to delete the data from KNVP table without using any delete statement. For it I have to use the Standard BAPI or any standard program.
    Can you please tell me the name of the standard program or BAPI to delete the data .
    Thanks in Advance
    Kuldeep

    Hello Raymond,
    I have use the function 'CUSTOMER_UPDATE' in which I only gives the data in T_XKNVP table only but still the data is not get deleting. Please see the code below.
    =============================================================
    REPORT  ZK_TEST2                                .
    data :
        I_KNA1     LIKE     KNA1,
        I_KNB1     LIKE     KNB1,
        I_KNVV     LIKE     KNVV,
        I_YKNA1     LIKE     KNA1,
        I_YKNB1     LIKE     KNB1.
    Data :
    T_XKNAS       LIKE     FKNAS occurs 0,
    T_XKNB5     LIKE     FKNB5 occurs 0,
    T_XKNBK     LIKE     FKNBK occurs 0,
    T_XKNVA     LIKE     FKNVA occurs 0,
    T_XKNVD     LIKE     FKNVD occurs 0,
    T_XKNVI     LIKE     FKNVI occurs 0,
    T_XKNVK     LIKE     FKNVK occurs 0,
    T_XKNVL     LIKE     FKNVL occurs 0,
    T_XKNVP     LIKE     FKNVP occurs 0 with header line,
    T_XKNVS     LIKE     FKNVS occurs 0,
    T_XKNEX     LIKE     FKNEX occurs 0,
    T_XKNZA     LIKE     FKNZA occurs 0,
    T_YKNAS     LIKE     FKNAS occurs 0,
    T_YKNB5     LIKE     FKNB5 occurs 0,
    T_YKNBK     LIKE     FKNBK occurs 0,
    T_YKNVA     LIKE     FKNVA occurs 0,
    T_YKNVD     LIKE     FKNVD occurs 0,
    T_YKNVI     LIKE     FKNVI occurs 0,
    T_YKNVK     LIKE     FKNVK occurs 0,
    T_YKNVL     LIKE     FKNVL occurs 0,
    T_YKNVP     LIKE     FKNVP  occurs 0 with header line,
    T_YKNVS     LIKE     FKNVS occurs 0,
    T_YKNEX     LIKE     FKNEX occurs 0,
    T_YKNZA     LIKE     FKNZA occurs 0.
    T_XKNVP-KUNNR     =     '7000002648'     .
    *T_XKNVP-VKORG     =     '0001'     .
    *T_XKNVP-VTWEG     =     '01'     .
    *T_XKNVP-SPART     =     '01'     .
    T_XKNVP-KZ      =     'D'     .
    append T_XKNVP to T_XKNVP.
    CALL FUNCTION 'CUSTOMER_UPDATE'
      EXPORTING
        I_KNA1        = I_KNA1
        I_KNB1        = I_KNB1
        I_KNVV        = I_KNVV
        I_YKNA1       = I_YKNA1
        I_YKNB1       = I_YKNB1
      TABLES
        T_XKNAS       = T_XKNAS
        T_XKNB5       = T_XKNB5
        T_XKNBK       = T_XKNBK
        T_XKNVA       = T_XKNVA
        T_XKNVD       = T_XKNVD
        T_XKNVI       = T_XKNVI
        T_XKNVK       = T_XKNVK
        T_XKNVL       = T_XKNVL
        T_XKNVP       = T_XKNVP
        T_XKNVS       = T_XKNVS
        T_XKNEX       = T_XKNEX
        T_XKNZA       = T_XKNZA
        T_YKNAS       = T_YKNAS
        T_YKNB5       = T_YKNB5
        T_YKNBK       = T_YKNBK
        T_YKNVA       = T_YKNVA
        T_YKNVD       = T_YKNVD
        T_YKNVI       = T_YKNVI
        T_YKNVK       = T_YKNVK
        T_YKNVL       = T_YKNVL
        T_YKNVP       = T_YKNVP
        T_YKNVS       = T_YKNVS
        T_YKNEX       = T_YKNEX
        T_YKNZA       = T_YKNZA
    =============================================================

  • How do I delete caches in Lion and which can I delete?

    How do I delete caches in Lion and which ones can be deleted?

    you can delete all of them, they will be recreated as soon as the app opens again.
    Clearing Local Caches
    quit all open apps
    open Finder press "shift+command+G" and type ~/Library/Caches
    Drag all files and folders to the trash
    Enter login password when prompted
    Reboot
    your system may seem slower after reboot, this is because the caches are being rebuilt.
    Clearing Application Caches
    quit all open apps
    open Finder Press "shift+command+G" and type /Library/Caches
    Drag all files and folders to the trash
    Reboot

  • How to make KM document iView use portal theme / styles

    Hi,
    We're in the process of upgrading our NetWeaver Portal to 7.4 and trying to improve it wherever possible.
    We have numerous home pages which appear as the first landing page when a menu item if selected.
    These pages are stored as HTML files in KM and rendered as KM Document iViews.
    Is there an easy way of making these pages use the portal theme?
    Currently we link to our own CSS file which means there can be differences in appearance and if a user selected a different theme (e.g. high contrast), these pages would not change.
    I don't see any iView properties that could help.
    I did wonder whether we could use Web Page Composer but from a quick test this needs some work to set it up before I can evaluate further.
    Any help greatly appreciated.
    Thanks,
    Alan

    Is HTML Filter for Portal Stylesheets used for the repository where you are storing the HTML documents? Can you view the source of a document rendered by the KM Document iView? It should have a reference to the portal style sheet.

  • How to delete or achived the document which state is open.

    dear expert :
       the billing document is open ,i cann't process to it next step , so i want to delete the document or archived the document .please provide a way to resovle it .thanks a lot .
      best regards.

    HI
    As status is opened, it is not possible to archive the document.
    if you want to archive the document, you need to put in close state.
    With regards
    Virender Sharma

  • Deleting music from my iphone which has been deleted from itunes on my mac

    Hi,
    When I downloaded Angry Birds from the Mac store, the sound effects appeared in my itunes library on my Mac. I have deleted them from the itunes library on my mac, but they are still on my iphone. ANy ideas on how I can delete them will be gratefully received!
    Many thanks and merry Christmas
    Alison

    Thanks so much, it works! Appreciate you taking the time to help.
    All good wishes
    Alison x

  • Does WLS6.1 which uses Oracle can't support TRANSACTION_READ_UNCOMMITED?

    Hello.
              Oracle doesn't support TRANSACTION_READ_UNCOMMITED.
              Does it mean that WLS6.1 which uses Oracle can't support
              TRANSACTION_READ_UNCOMMITED ?
              Thanks
              Hyun Min.
              

    WLS can support ReadUnCommitted just fine.
              Oracle's database does not support that isolation level. You probably
              want ReadCommitted. That'll run fine in Oracle.
              -- Rob
              Hyun Min wrote:
              > Hello.
              >
              > Oracle doesn't support TRANSACTION_READ_UNCOMMITED.
              > Does it mean that WLS6.1 which uses Oracle can't support
              > TRANSACTION_READ_UNCOMMITED ?
              >
              > Thanks
              > Hyun Min.
              

  • PDF documents which are made OCR compatible cant be found on AirPort Time Capsule 3TB Disk

    Hi,
    HW/SW : iMAC 27 OSX Mavericks 10.9.2
    HW/SW : AirPort Time Capsule 3TB Disk Version 7.7.3
    SW : Acrobat XI PRO 11.0.06
    SW : ABBYY FineReader Pro 12.0.4
    PDF documents which are made OCR compatible cant be found on latest TimeCapsule (folders).
    I use my TC additionaly as drive to share across my Wi-Fi network.
    When I save the folder on my Local MAC I search via finder/spotlight a word and the PDFs which have the words in the document show up but when I save the folder on the TimeCapsuleDisk they dont.
    I use Acrobat XI PRO to make the PDF OCR capable and also  ABBYY FineReader PRO
    Saved OCR'ed PDF's on local disk of my iMAC
    Saved OCR'ed PDF's on AirPort Time Capsule 3TB Disk ( latest firmware etc. )
    Search via finder in Folders &  "Spotlight"
    PDF OCR'ed files popup on local MAC disk
    PDF OCR'ed files (same folder c&p to TC) on TC disk do not popup ( clicked in search also on the specific folder but no finding )
    The finder/Spotlight finds documents on TC "names" but looks like from my point of view, it does not go into the documents which are OCR capable to search for these words.
    Why ?
    Any possebility to solve this ?
    Thanks and best regards,
    Sandro

    Did you ever figure this out?

  • My table of contents does not use the entry style I select for words in the paragraph that have character styles applied to them in the chapter, so some of the letters are showing up as green, which is fine in the chapter but not in the TOC.

    My table of contents does not use the entry style I select for words in the paragraph that have character styles applied to them in the chapter, so some of the letters, specifically parameters, are showing up green, which is fine in the chapter but not in the TOC. I can manually fix this in the TOC by changing the character style to none after the toc  has been generated, but I don't want to do this.

    What application are you running? Please ask this in the forum of the product you're using.

  • On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    Do the alternate e-mail address ends with me.com or icloud.com?

  • I bought a used iPhone and found him email iCloud does not affect me so how can I deleted this email in order to use the device freely and privacy

    I bought a used iPhone and found him email iCloud does not affect me so how can I deleted this email in order to use the device freely and privacy
    help me please

    You can't. Return the phone for a refund, if you can, because without the previous owner's Apple ID/Password, you will not be able to re-activate the phone. It will be useless to you.
    Apple can't/won't help you with this.

  • IBooks Author table of contents does recognize paragraph styles

    The video
    https://www.youtube.com/watch?v=n2p08-NmqfQ
    shows that using iBooks Author  I should be able to have text that is formatted with specific Paragraph Styles show automatically in the Table of Contents. But for me that does not work.  My version of ibooksAuthor is version 2.1.1 ( the latest) , under OS 10.9.1 (the latest) on an iMac.
    The video shows the Inspector for TOC as a separate window and shows explicitly, under Sections, the items Copyright, Dedication, Foreword, Section and Section Text. It also has two Paragraph styles listed, Heading 1 and Heading 2. 
    This set of TOC entries is  available for me with templates from Landscape with Portrait but NOT with templates of Portrait. The templates available for Portrait do not  list, in the TOC Inspector, Heading 1 or Heading 2.
    Furthermore, the Portrait templates do NOT allow me to add any Paragraph style to the list (the control for adding Paragraph Styles to the list is grayed out), although the Landscape templates DO allow me to add any Paragraph style.
    However, when, with a Landscape template (e.g. Basic) I format text as one of the paragraph styles Header 1, Header 2, Chapter, Section, it does NOT automatically show up in the TOC, though if I add a new section it does automatically show up. The TOC only lists Chapter and Section if these have been added from the menu bar.
    When I use a Portrait template  (e.g. Basic or any other) and format text as one of the Paragraph Styles Chapter or Section that  text does not show up in the TOC. And the control for adding Paragraph Styles to the list is grayed out: I cannot add Header 1 or Header 2. The TOC only lists Chapter and Section if these have been added from the menu bar.
    No matter what template I use, if I assign a paragraph style to some text, it does not show up in the TOC. And with Portrait templates, which is what I want to use,  I cannot adde any paragraph styles to the TOC Inspector in Portrait templates.

    The iBA Help has info on: table of contents
    Which includes:
    Each book comes with a table of contents that is updated automatically. You can view the table of contents at any time by selecting Table of Contents in the sidebar. The table of contents includes a default set of items, but you can change which items appear. A table of contents can include:
    Chapter and section titles: All chapter and section titles are included in the table of contents by default. If you remove a section from the table of contents, all other sections that use the same layout are removed as well.
    Text that uses specified paragraph styles: By default, the table of contents includes all paragraphs in the book that use the Heading 1 and Heading 2 style, but you can include whichever styles you like. Paragraph styles appear in the table of contents only in portrait orientation. See Format text using styles.
    The way the table of contents looks depends on the current page orientation. In landscape orientation (shown below), each chapter has its own contents page, with navigation buttons at the bottom. In portrait orientation, the entire book’s table of contents is visible as an expandable list.
    Add or remove items in the table of contents
    If the Document inspector isn’t open, click Inspector in the toolbar and click the Document Inspector button.
    Click the TOC button.
    Do either or both of the following:
    To add an item: Click the Add pop-up menu , choose Add Paragraph Style, and choose an option from the submenu.
    To remove an item: Select the item you want to remove and click the Delete button .

  • Trouble deleting paragraph styles

    I have a book with five documents in it. I am trying to delete some paragraph styles but they just don't want to go away. I keep deleting them from one of the documents, then I make that document the style source, synchronize the other documents with it, and the styles keep reappearing. I've tried doing it with different documents but I still get the same result.

    Syncing book  doesn't delete styles only adds.
    Just open each file (only 5 of them) and remover the styles...they are pobably used somewhere.

Maybe you are looking for