Тема сайта КРИЛ
Go to file
2016-03-20 14:29:05 +01:00
css adjusting file structure so that is the same like in the parent theme 2016-03-20 14:29:05 +01:00
fonts streamline npm/bower/sass workflow between parent and child theme 2016-03-20 14:18:22 +01:00
js streamline npm/bower/sass workflow between parent and child theme 2016-03-20 14:18:22 +01:00
sass adjusting file structure so that is the same like in the parent theme 2016-03-20 14:29:05 +01:00
src adjusting file structure so that is the same like in the parent theme 2016-03-20 14:29:05 +01:00
.gitignore Recreating child theme 2016-02-14 10:14:30 +01:00
bower.json streamline npm/bower/sass workflow between parent and child theme 2016-03-20 14:18:22 +01:00
functions.php streamline npm/bower/sass workflow between parent and child theme 2016-03-20 14:18:22 +01:00
gulpfile.js adjusting file structure so that is the same like in the parent theme 2016-03-20 14:29:05 +01:00
package.json streamline npm/bower/sass workflow between parent and child theme 2016-03-20 14:18:22 +01:00
README.md Version changes and read 2016-02-14 10:16:21 +01:00
screenshot.png initial commit 2015-03-18 11:41:56 +01:00
style.css Version changes and read 2016-02-14 10:16:21 +01:00

understrap-child

Basic Child Theme for UnderStrap Theme Framework: https://github.com/holger1411/understrap

How it works

It shares with the parent theme all PHP files and adds its own functions.php on top of the UnderStrap parent themes functions.php.

IT DIT NOT LOAD THE PARENT THEMES CSS FILE(S)! Instead it uses the UnderStrap Parent Theme as dependency via Bower and compiles its own CSS file from it.

Uses the Enqueue method the load and sort the CSS file the right way instead of the old @import methode

Installation

  1. Install the parent theme UnderStrap first: https://github.com/holger1411/understrap
  2. Just upload the understrap-child folder to your wp-content/themes directory
  3. Go into your WP admin backend
  4. Go to "Appearance -> Themes"
  5. Activate the UnderStrap Child theme

Editing

Add your own CSS styles to /sass/theme/_child_theme.scss ot import you own files into /sass/theme/understrap-child.scss

To overwrite Bootstrap or UnderStraps base variables just add your own value to: /sass/theme/_child_theme_variables.scss

For example: the "$brand-primary" variable is used by both, Bootstrap and UnderStrap. Add your own color like: $brand-primary: #ff6600; in /sass/theme/_child_theme_variables.scss to overwrite it. That will change automatically all elements who use this variable. It will be outputted into: /css/understrap-child.min.css and /css/understrap-child.css

So you have one clean CSS file at the end and just one request.