Changing the headings and sub headings of all posts

by 1 replies
1
How do we change the headings and sub headings of all posts on wordpress and not go through one by one?

I know it's a css thing but I don't know where to look
#programming #changing #headings #posts
  • Look in your theme's stylesheet - usually, called style.css. You can use the WordPress backend editor (APPEARANCE > EDITOR > style.css).

    Then change the code (font size, weight, family, color, etc.) that governs the headings (depends on your particular theme) - something like:
    Code:
    h3 {
    	font-size: 14px;
    }

Next Topics on Trending Feed