skip to Main Content

how to apply unique CSS styling to an individual page of content without using any plugin such as TinyMCE in WordPress classic editor

2

Answers


  1. You can use it as inline css like defining inline

    or

    can you as external css by adding the css in style.css with unique class or id defined in your html

    refer: https://torquemag.io/2016/09/add-custom-styles-wordpress-editor-manually-via-plugin/

    Login or Signup to reply.
  2. The body tag stores unique class for each posts. so you can target css for each posts as

    body.post-1 { … }

    body.post-2 { … }

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search