From 159c8fda987078de02034e0944d22a73f0cd8986 Mon Sep 17 00:00:00 2001 From: terrytibbles <25575702+terrytibbles@users.noreply.github.com> Date: Tue, 26 Feb 2019 17:22:52 +0800 Subject: [PATCH] Update theming.rst --- developer_manual/core/theming.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/developer_manual/core/theming.rst b/developer_manual/core/theming.rst index b598a880a..2727b4110 100644 --- a/developer_manual/core/theming.rst +++ b/developer_manual/core/theming.rst @@ -8,17 +8,16 @@ Themes can be used to customize the look and feel of Nextcloud. Getting started --------------- -A good idea to get started with a dynamically created website is to inspect it with **web developer tools**, that are found in almost any browser. They show the generated HTML and the CSS Code that the client/browser is receiving: -With this facts you can easily determine where the following object-related attributes for the phenomenons are settled: +A good idea to get started with a dynamically created website is to inspect it with **web developer tools**, that are found in almost any browser. They show the generated HTML and the CSS Code that the client/browser is receiving. With these facts, you can easily determine where the following object-related attributes are set: * place * colour * links * graphics -The next thing you should do, before starting any changes, is to make a backup of your current theme(s), e.g.: +The next thing you should do, before making any changes, is to make a backup of your current theme(s). To do this, change to your Nextcloud installation directory and make a copy of the theme directory, e.g.: -* cd …/nextcloud/themes +* cd nextcloud/themes * cp -r example mytheme