• Very new to wp, trying to cobble together a simple site. Can’t seem to edit the text size For the title or description of my homepage.

    Googling this the solution seems to be editing the code in css, I am hesitant. Is there no other way?

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you show us a page with the title that you mean?

    Thread Starter cnotes11

    (@cnotes11)

    The text I am trying to edit is in customize>site identity> “site title” and “tagline”

    Does that help?

    Thread Starter cnotes11

    (@cnotes11)

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You’ve left your site behind a login screen, which means we can’t see it. If you can’t link to your site, can you link to a page on the theme’s demo site that has the title and tagline?

    Thread Starter cnotes11

    (@cnotes11)

    https://ww.wp.xz.cn/themes/origami/

    Title is roughly where “theme preview” is…and the tagline “previewing anther wordpress theme”

    Actually this is another point of confusion, what I see on my site barely resembles anything on the demo. I guess its because they’ve nicely worked it up and what I have is more the foundation of that?

    I was under the impression buying a theme was to allow you to simply plug in a lot of this legwork. Anyway, thanks for your reply to my (undoubtedly) very basic question.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a section for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      #logo h1.logo {
          font-size: 52px;
      }
      
      #logo h3.logo {
          font-size: 13px;
      }
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    To do this on the Homepage only, try this code instead:

    .home #logo h1.logo {
        font-size: 52px;
    }
    
    .home #logo h3.logo {
        font-size: 13px;
    }

    Changing the numbers “52” and “13” will change the font size of the title & tagline.

    Thread Starter cnotes11

    (@cnotes11)

    I was not able to locate a way to edit CSS code under “settings” per your screenshot after installing the plugin.

    I found “CSS editor” under appearance tab and copied the code there. Saved, previewed…no change still.

    I must be missing something simple?

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Origami – Title’ is closed to new replies.