iNove theme: Post title format
-
Hello everyone,
I’m using iNove theme. This is my site http://fanberries.com/Post titles are too big to my teaste, how can I resize them?
Also, I want to invert the position of post title and blog title on browsers. For iNove theme it appears: Blog title > Post title. And I want it: Post title > Blog title. How to do it?
Thanks in advance.
-
Change the CSS:
.post H2
font-size: 16px
to a lower px like 12 or 14as for Blog title > Post title, these are typically found in header.php at the title tag (review in theme options first).
My hero! Thanks a lot, I successfully rezised post tiles π
As for my second question, I just looked at theme options but nothing’s there about it. And editing header.php or any other file, well, I’m new on this wordpress thing (or whatever involving to edit code :P), so, what exactly I have to search for?
Use pastebin to share the full contents of the theme’s header.php file and I will take a look.
http://pastebin.com/jcZgDitg
Thanks πUnfortunately this file does not directly include the title tag (as most do) – it is most likely included in function.php or some javascript file being called…review the theme files and look for the text:
<title>some code</title>It is likely a part of one of the functions called between:
<!-- header START -->
and
<!-- header END -->
as it does appear properly in the header of the generated source code.I looked on all files and I only found it on 404.php, I guess this is not what I’m looking for, but here is it anyway:
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>I just downloaded the theme and I can see this text in header.php:
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>Change to (if exists):
<title><?php wp_title(); ?><?php bloginfo('name'); ?></title>Also, are you using a child theme? If so look in child theme folder for file header.php
Or add that line directly after <head> or just before </head> making sure not to insert it between any php functions or long lines that wrap in header.php (mod child theme file if used)
Thank you! I found it, WP editor only shows one header.php file, but there are two, I had no idea.
I modified the code and worked, but there’s one problem.
Originally, it appered: Blog title Β» Post title
And now appears: Β»Post titleBlog title.
Separator mark right before the post tile and no space between post title and blog title πThank you! Do I have to change something on that code? I replaced the previous one and now it looks like this:
Home: Blog title |
Posts: Post titleThere’s no blog title on post pages π
Edit: Works fine with categories and pages though.
(Category | Blog title)
(Page title | Blog title)This actually gives more weight in SEO…but I agree that for some reason it’s not working well on your site, probably as you are not using a front page as home….
Do this, download the Twenty Eleven theme, open header.php and use the title as is included there…should then be ‘blog title | post or page for title’
Well, now I like what you say about the SEO, I guess I will leave it like this for now. Do you think I will have any kind of problem if is not working right? (sounds weird, I know), they’re just titles.
But if I leave it like this, how do I delete the “|” on the home page?
I found it. The problem was that I’m not using a description. The code tells the home page (or whatever hehe) to appear like: “Blog name | Blog info”, so I deleted the last part of this code:
} elseif ( is_home() ) { bloginfo( 'name' ); echo ' | '; bloginfo( 'description' );Also, for post pages the code just talk about post tiles and nothing else, that’s why I’m not seeing blog title there:
} elseif ( is_single() ) { wp_title('');Or that’s what I think at least hehe.
Once again, thank you so much for your help! π
I think I know what it is now:
Admin Dashboard>Settings>General> What does the field ‘tagline’ have in it?
If blank fill it in!
It’s empty (see post above, we posted almost at the same time :P)
You’ve been really helful. I got what I wanted π
The topic ‘iNove theme: Post title format’ is closed to new replies.