Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you show us a page with the title that you mean?
The text I am trying to edit is in customize>site identity> “site title” and “tagline”
Does that help?
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?
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:
- Install this Custom CSS Manager plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications:
-
(put this code in)
#logo h1.logo {
font-size: 52px;
}
#logo h3.logo {
font-size: 13px;
}
- 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.
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?