You can ‘access’ your CSS by going to:
Appearance -> Editor -> Stylesheet (style.css)
However, any code you paste or change here will be overridden when the theme updates.
The most recommended option for custom code is to create a child theme.
A child theme allows you to add only your customizations to the style.css file and remains effective even when you update your theme.
To create a child theme you can read about it here:
https://codex.www.ads-software.com/Child_Themes
The basic steps are :
1. Navigate to the directory wp-content/themes/
(Using an ftp client or File Manager in Cpanel)
2. Create a new folder called ‘adelle-child’
3. Create a new file in that directory called style.css and paste in this code:
/*
Theme Name: Adelle Child
Theme URI: https://example.com/adelle-child/
Description: Adelle Child Theme
Author: Laura
Author URI: https://www.lauralovesbeautyblog.com
Template: Adelle
Version: 1.0.0
*/
@import url("../adelle/style.css");
/* =Theme customization starts here
-------------------------------------------------------------- */
/* Remove Search Bar*/
.header-form {
display: none;
}
4. Now you have to activate the child theme in your WordPress Admin area:
Appearance – > Themes – > Adelle Child Theme – > Activate
5. Your child theme is now set up and your customizations will take affect.
Good luck and I hope that helps ??
– Luke