diff --git a/17/umbraco-cms/extending/packages/creating-a-package.md b/17/umbraco-cms/extending/packages/creating-a-package.md index 6d2e909c897..3dacd1ff82f 100644 --- a/17/umbraco-cms/extending/packages/creating-a-package.md +++ b/17/umbraco-cms/extending/packages/creating-a-package.md @@ -112,7 +112,7 @@ Additionally, the `.csproj` file is configured to support NuGet packaging, allow Since the `umbraco-extension` template does not generate an `App_Plugins` folder by default, you will need to manually create it. 1. Create an `App_Plugins` folder in the downloaded package folder. -2. Go to the `welcome-dashboard` folder created in the [Creating a Custom Dashboard Tutorial](../../tutorials/creating-a-custom-dashboard/#setting-up-a-package). +2. Go to the `welcome-dashboard` folder created in the [Creating a Custom Dashboard Tutorial](../../tutorials/creating-a-custom-dashboard/README.md#setting-up-a-package). 3. Transfer or copy the `welcome-dashboard` folder in the `App_Plugins` folder.  diff --git a/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md b/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md index e744a4b2b98..ac99f5c73e4 100644 --- a/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md +++ b/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md @@ -51,7 +51,7 @@ The Data Type editor allows you to configure the following properties: ## Setup Block Types -Block Types are based on [**Element Types**](../../../../data/defining-content/#element-types). These can be created beforehand or while setting up your Block Types. +Block Types are based on [**Element Types**](../../../../data/defining-content/default-document-types.md#element-type). These can be created beforehand or while setting up your Block Types. Once you have added an Element Type as a Block Type on your Block Grid Data Type you have the option to configure it. @@ -197,8 +197,8 @@ The Block is resized using a click-and-drag feature. Moving the mouse will chang Rendering the stored value of your **Block Grid** property editor can be done in two ways: -1. [Default rendering](block-grid-editor.md#1-default-rendering) -2. [Build your own rendering](block-grid-editor.md#2-build-your-own-rendering) +1. [Default rendering](#1-default-rendering) +2. [Build your own rendering](#2-build-custom-rendering) ### 1. Default rendering diff --git a/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md b/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md index ce7c684ab34..9cf61753613 100644 --- a/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md +++ b/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md @@ -10,7 +10,7 @@ This article is a work in progress and may undergo further revisions, updates, or amendments. The information contained herein is subject to change without notice. {% endhint %} -**Block List** is a list editing property editor, using [Element Types](../../../../data/defining-content/#element-types) to define the list item schema. +**Block List** is a list editing property editor, using [Element Types](../../../../data/defining-content/default-document-types.md#element-type) to define the list item schema. {% hint style="info" %} The _Block List_ replaces the obsolete _Nested Content_ editor. diff --git a/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/css-properties.md b/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/css-properties.md index ab02849b429..b7c0d9fa0fb 100644 --- a/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/css-properties.md +++ b/17/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/css-properties.md @@ -16,7 +16,6 @@ For general information on working with stylesheets and JavaScript in Umbraco, c If you wanted to target a specific Rich Text Editor, you can set the [stylesheet directly in the configuration](configuration.md#stylesheets). - ## Custom CSS properties reference The following CSS properties are available for customization: @@ -30,6 +29,5 @@ The following CSS properties are available for customization: | `--umb-rte-min-height` | The minimum height of the rich-text-editor | `100%` | | `--umb-rte-max-height` | The maximum height of the rich-text-editor | `100%` | - The CSS custom properties may change in future versions of Umbraco. You can always find the latest values in the [Rich Text Editor component base class](https://github.com/umbraco/Umbraco-CMS/blob/main/src/Umbraco.Web.UI.Client/src/packages/rte/components/rte-base.element.ts) in the Umbraco CMS GitHub repository. diff --git a/17/umbraco-cms/fundamentals/data/content-version-cleanup.md b/17/umbraco-cms/fundamentals/data/content-version-cleanup.md index 04b629e13d8..fcfd0676b40 100644 --- a/17/umbraco-cms/fundamentals/data/content-version-cleanup.md +++ b/17/umbraco-cms/fundamentals/data/content-version-cleanup.md @@ -39,7 +39,7 @@ The feature can be configured in the `appSettings.json`: } ``` -For sites with stricter requirements, it is possible to opt-out of both options globally, see [ContentSettings](../../reference/configuration/contentsettings.md#contentversioncleanuppolicy) and by Document Type. +For sites with stricter requirements, it is possible to opt-out of both options globally, see [ContentSettings](../../reference/configuration/contentsettings.md#content-version-cleanup-policy) and by Document Type. Additionally, it is possible to keep the feature enabled but mark specific versions to keep forever. diff --git a/17/umbraco-cms/fundamentals/data/creating-media/README.md b/17/umbraco-cms/fundamentals/data/creating-media/README.md index 1c872dd7084..2bc9859ab82 100644 --- a/17/umbraco-cms/fundamentals/data/creating-media/README.md +++ b/17/umbraco-cms/fundamentals/data/creating-media/README.md @@ -19,15 +19,15 @@ Media in Umbraco CMS is handled the same way as content. You define **Media Type The default Media Types aim to cover most needs for media on a website. You do not need to define your Media Types to start using the Media section. The tools for organizing and uploading the media are already in place. {% hint style="info" %} -If you have upgraded from an older version than 8.14 the Media Types listed above are not added automatically. You can add those types manually yourselves by following the steps below ['Creating a new Media Type'](./#creating-a-media-type). On the [default media types page](default-media-types.md), you will find a detailed overview of all Media Types. +If you have upgraded from an older version than 8.14 the Media Types listed above are not added automatically. You can add those types manually yourselves by following the steps below ['Creating a new Media Type'](#creating-a-media-type). On the [default media types page](default-media-types.md), you will find a detailed overview of all Media Types. {% endhint %} ## Uploading Media You can upload media in two different ways: -* [Through the Media section](./#add-media-through-the-media-section) and -* [Through the Content section](./#add-media-through-the-content-section) +* [Through the Media section](#add-media-through-the-media-section) and +* [Through the Content section](#add-media-through-the-content-section) ### Add media through the Media section diff --git a/17/umbraco-cms/fundamentals/data/defining-content/default-document-types.md b/17/umbraco-cms/fundamentals/data/defining-content/default-document-types.md index 57d079fb712..9b2d041c605 100644 --- a/17/umbraco-cms/fundamentals/data/defining-content/default-document-types.md +++ b/17/umbraco-cms/fundamentals/data/defining-content/default-document-types.md @@ -12,7 +12,7 @@ On this page, you will find the default Document Types in Umbraco. If you want t ## Document Type -A Document Type defines the content structure and fields that can be used across different content items. When creating a Document Type without a template, you focus solely on structured content without tying it to a specific design or layout. This is ideal for content that doesn’t require direct front-end rendering, such as reusable blocks or items managed within a headless CMS setup. +A Document Type defines the content structure and fields that can be used across different content items. When creating a Document Type without a template, you focus solely on structured content without tying it to a specific design or layout. This is ideal for content that doesn’t require direct front-end rendering, such as reusable blocks or items managed within a headless CMS setup. Use a Document Type without a template for structured, reusable content like metadata schemas, settings, or components such as product details and author profiles. @@ -28,7 +28,7 @@ An Element Type is a Document Type *without a template* designed for reusable an Element Types are not part of the Content tree and cannot render directly on the front end. When created, the **Is an Element Type** flag in the **Permissions** tab is automatically set to **True**. -) + Use an Element Type when defining building blocks for complex page layouts, such as grid blocks or call-to-action sections. They are an essential part of modular content design. diff --git a/17/umbraco-cms/fundamentals/data/dictionary-items.md b/17/umbraco-cms/fundamentals/data/dictionary-items.md index 2fd9824403e..3459a46d9ac 100644 --- a/17/umbraco-cms/fundamentals/data/dictionary-items.md +++ b/17/umbraco-cms/fundamentals/data/dictionary-items.md @@ -51,7 +51,7 @@ To edit a dictionary item, follow these steps: {% hint style="info" %} It will only be possible to edit the language(s) that the given user has access to. The value of the remaining languages will be _read-only_. -Which language a user has access to is determined by the "Language permissions" set on the User Group. Learn more about this feature in the [Users](users/#creating-a-user-group) article. +Which language a user has access to is determined by the "Language permissions" set on the User Group. Learn more about this feature in the [Users](users/README.md#creating-a-user-group) article. {% endhint %} ## Fetching Dictionary Values in the Template diff --git a/17/umbraco-cms/fundamentals/design/rendering-content.md b/17/umbraco-cms/fundamentals/design/rendering-content.md index 0a960f1b842..159f063730f 100644 --- a/17/umbraco-cms/fundamentals/design/rendering-content.md +++ b/17/umbraco-cms/fundamentals/design/rendering-content.md @@ -4,7 +4,7 @@ _The primary task of any template is to render the values of the current page or ## Display a value in your template view -Each property in your [Document Type](../data/defining-content/#what-is-a-document-type) has an alias, this is used to specify where in the template view to display the value. +Each property in your [Document Type](../data/defining-content/README.md#what-is-a-document-type) has an alias, this is used to specify where in the template view to display the value. ```html