geode
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Expound] Removing Page titlesPerhaps this:
h1.entry-title {
display: none;
}You can do that from Appearances = Editor, but you should work from a child-theme css file. It’s quite easy, and well worth the effort to set up your child theme. Instructions abound.
Forum: Themes and Templates
In reply to: [Expound] copyright on footerWhat I do is add two static pages: “Copyright” and “Privacy Notice”. I populate both those pages with standard language.
Then I copy “footer.php” from the “wp-content/themes/expound/” folder to my “wp-content/themes/expound-child” and edit that file to add links to the “Privacy Notice” and “Copyright” pages. You can do this in the Dashboard (Appearances => Editor) if you set your file permissions correctly ( Don’t forget to reset them afterwards! )
Once that’s working, you can edit the CSS for presentation, again in your child-theme folder.
Here’s an example: http://www.castjames.com
Forum: Themes and Templates
In reply to: [Expound] site-main is wider than header and footerDuh !
I should have studied the code a bit more before poking around < blush >.
I’ve applied the border to #page instead of to the individual elements and now I’ve got exactly what I want.
Forum: Themes and Templates
In reply to: [Expound] site-main is wider than header and footerWell, I figured out that I should be applying the border to .site-header as a whole rather tan to .site-branding and site-navigation separately, and that took care of the problem with the menu bar. I still haven’t figured out what’s going on with the main area, though.