Difference between revisions of "Custom CSS"

From Help Wiki
m (subst applied to Template:TwoColumn)
Line 1: Line 1:
{{TwoColumn|lead=
+
 
 +
<div class="container-fluid">
 +
<div class="row">
 +
<div class="col-md-8">
 +
<div class="lead">
 
Customize the CSS of your theme to change colors, fonts, and more
 
Customize the CSS of your theme to change colors, fonts, and more
|content=
+
</div>
 +
 
 
====You can write custom CSS (Cascading Style Sheets) to override the theme's CSS. ====
 
====You can write custom CSS (Cascading Style Sheets) to override the theme's CSS. ====
 
#Activate the '''Simple Custom CSS''' plugin in your site
 
#Activate the '''Simple Custom CSS''' plugin in your site
Line 10: Line 15:
 
#*Firebug for Chrome
 
#*Firebug for Chrome
 
#To learn CSS basics try [http://www.w3schools.com/css/DEFAULT.asp w3schools.com]
 
#To learn CSS basics try [http://www.w3schools.com/css/DEFAULT.asp w3schools.com]
|sidebar=
+
 
 +
 
 +
<!-- end col-md-8 -->
 +
</div>
 +
<div class="col-md-1"></div>
 +
<div class="col-md-3 sidebar">
 
{{WordPress Tutorial Header}}
 
{{WordPress Tutorial Header}}
  
Line 27: Line 37:
 
{{WordPress Help Sidebar}}
 
{{WordPress Help Sidebar}}
  
}}
+
<!-- end col-md-3-->
 +
</div>
 +
<!-- end row-->
 +
</div>
 +
<!-- end container-->
 +
</div>
 +
<!-- Generator=Template:TwoColumn -->
 +
__NOTOC__
 +
__NOEDITSECTION__
  
 
[[Category:Wordpress Tutorial]]
 
[[Category:Wordpress Tutorial]]
 
[[category:Wordpress]]
 
[[category:Wordpress]]
 
[[category:CSS]]
 
[[category:CSS]]

Revision as of 17:01, 14 August 2017

Customize the CSS of your theme to change colors, fonts, and more

You can write custom CSS (Cascading Style Sheets) to override the theme's CSS.

  1. Activate the Simple Custom CSS plugin in your site
  2. Go Appearance > Edit CSS and begin creating your own style sheet to override the built-in theme's style sheet
  3. You'll need to learn how your theme's HTML and CSS is structured, primarily what are the names of the IDs and Classes used so you can override them in your style sheet. Some great tools for this are:
  4. To learn CSS basics try w3schools.com