Not possible without seeing your site.
check if your theme is using body_class() and/or post_class()
http://codex.ww.wp.xz.cn/Function_Reference/body_class
http://codex.ww.wp.xz.cn/Function_Reference/post_class
generally try using a browser inspection tool to find out if posts and pages have distinct CSS classes to base your formatting on.
Thank you WPogi and alchymth for your responses. The site I am working on is presently at: http://www.hardenberghdesign.com/silvermusic/
I am using Twenty Twelve theme, with a child theme that I am devising.
I am on a very steep learning curve for wordpress, adding to my rudimentary CSS knowledge and almost non-existent PHP knowlwedge.
It seems as if the information alchymyth suggested about “post_class” might be just what I need, but I would appreciate if you could confirm that.
When I inspect the “entry-title” element on a Page title and a Post title, I see this difference in the code:
For a POST: <article id=”post-448″ class=”post-448 post type-post status-publish format-standard hentry category-uncategorized”>
For a PAGE: <article id=”post-2″ class=”post-2 page type-page status-publish hentry”>
On the codex page about post_class, it says to “implement the post_class template tag into a theme.”.
Would you please tell me where I put the example code? <div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
Many thanks for any help you can provide.
Would you please tell me where I put the example code? <div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
the code is already present in the theme.
in CSS, try:
.post .entry-header .entry-title { .... }
.page .entry-header .entry-title { .... }
be aware that the post titles in the index and archive pages are linked, and are using a different CSS.
Yes!! That works perfectly.
Sending you much gratitude for your help.
N. H.