Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Center area post/pages »

How to change h1 in posts


  #1  
Old Mar 27, 2010, 02:58 PM
johnharvard
 
2 posts · Mar 2010
I'm trying to change the h1 style for all of my posts. In "ATO->Style POSTS and PAGES->HEADLINE Box" I added

color:#676767; font-size:21px; font-weight:normal; letter-spacing:-1px;line-height:23px;

This had no effect. Clearly the wrong place, but where?
Thanks,
John
  #2  
Old Mar 28, 2010, 05:24 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
remember there are three states for a Headline,
the Headline as just text (HEADLINE Box: Text)
the headline as a link (HEADLINE Box: Links)
the headline as a link but being hovered on (HEADLINE Box: Links: Hover)

HEADLINE Box styles the box that contains the post/page title NOT the title itself
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #3  
Old Mar 29, 2010, 07:17 AM
johnharvard
 
2 posts · Mar 2010
Ok, thanks.
So to actually modify the properties of the h1 would I have to edit the css? Or maybe there's some other place in the Atahualpa config web pages to do that?
  #4  
Old Mar 30, 2010, 10:53 AM
joe hark
 
168 posts · Feb 2009
I think my question is the same. But to be certain, let me ask it in my own words.

I want to change the size of the font in the subject of a post and page. It may be somewhere in the options. But exactly where, I can't tell. May I have specifics please?

For example, what is it now and what would take it down about 25%?

Thanks
  #5  
Old Mar 31, 2010, 05:18 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
you need to set your font size in all three places - ie
1) ATO->Style POSTS and PAGES->HEADLINE Box: Text
2) ATO->Style POSTS and PAGES->HEADLINE Box: Link
3) ATO->Style POSTS and PAGES->HEADLINE Box: Links: Hover
also consider, the page/post title is an H1 on a single page, but an H2 on a multi post page unlsee you set 'ATO->Configure SEO->Make Post/Page Titles H1?' to 'NO' in which cast they will be H2 in both cases
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #6  
Old Apr 1, 2010, 09:39 AM
joe hark
 
168 posts · Feb 2009
Oops, that's more information than I can handle. Please tell me exactly where and exactly what code must I use to change the font of the page subject in the center column.

Thank you for your help. Very much appreciated.
  #7  
Old Apr 1, 2010, 09:52 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
I just told you!
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #8  
Old Apr 1, 2010, 10:15 AM
joe hark
 
168 posts · Feb 2009
Sorry if I upset you. But the best I can get from that information is three places where I must make changes. If I understand you I must make all three changes? And I still do not know what to change. I see something there about SEO but I am not asking about SEO.

I apologize for being dense but I'm not trying to be difficult.
  #9  
Old Apr 1, 2010, 06:42 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
If you want the post/page title to have teh some look, you must make the change in all three places. This is where you put the CSS Style that you want to have. If you want teh font size to be 21px, then you look up the syntax for font size styling (http://www.w3schools.com/css/ is a very good reference for CSS syntax) and fine it is 'font-size: nnpx' wher nn is some number, so you code
HTML Code:
font-size:21px;
the page/post title is an H1 on a single page, but an H2 on a multi post page unless you set 'ATO->Configure SEO->Make Post/Page Titles H1?' to 'NO' in which cast they will be H2 in both cases

An H1 and H2 can be different sizes.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #10  
Old Apr 1, 2010, 07:46 PM
joe hark
 
168 posts · Feb 2009
First of, thank you for your patience with my bumbling. The success of any product such as this theme requires more than just that it be excellent. The more powerful a product, the greater the possibilities for frustrations and mis-understandings. Absent the kind of support you are providing, this theme would fall short of its potential. The world of software development is littered with glittering failures caused by lack of consistent suppor6t.

I've got to get to bed right now in anticipation of an obscenely early start on a long day, but as soon as I can I'll apply your advice.

Joe
  #11  
Old Apr 8, 2010, 09:21 PM
graham
 
3 posts · Apr 2010
Hi - I hope this isn't a thread hijack - but it seems closely related.

I too struggle with H1 vs H2 in single post (or page) vs. multi-post (i.e. linked).

My blogs new so I've entered some big values to try and demonstrate. Just controlling size

In HEADLINE Box: Links I'm using
Code:
color: #666666;
text-decoration: none;
font-size: 200%;
In HEADLINE Box: Text I'm using
Code:
padding: 0;
margin: 0;
color: #666666;
font-size: 200%;
My Hover is the same as links except for the color.

The Headline is large on the multi-post page (i.e. blog root) but not on the post page. Any ideas?


TIA for any help.

Last edited by graham; Apr 12, 2010 at 08:34 AM.
  #12  
Old Apr 9, 2010, 07:37 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
The title is an H2 on the multi post pages and an H1 on the single post pages (for SEO) if you want them the same go to ATO->Configure SEO->Make Post/Page Titles H1? and set it to NO
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Apr 15, 2010 at 06:15 PM.
  #13  
Old Apr 9, 2010, 07:48 AM
graham
 
3 posts · Apr 2010
Thanks juggledad. I think I understood that behaviour from earlier in the thread, but perhaps don't understand the way the theme options affects the style sheet.

I like the SEO capability to have the post header appear as H2 on multi-pages, but as H1 on the single post page. I guess I assumed the theme options for the HEADLINE would update the respective H1 and H2 styles if the SEO was ON.

Maybe I can override the single post header CSS, but I can't do it through the basic settings?

Last edited by juggledad; Apr 15, 2010 at 06:15 PM.
  #14  
Old Oct 12, 2010, 05:04 AM
papalagi
 
41 posts · Nov 2009
hi everybody

can't seem to change the margin-top and margin-bottom values for <H1> tag

tried adding code to CSS/HTML INSERT, ATO->Style Post & Pages, even tweaking the css.php file, no effect, it's always

margin-top: 10px;
margin-bottom: 10px;

the site is here:

http://kappapiu.com/newsite/services

i'm using the option

Make Post/Page Titles H1: yes

any idea please?

cheers.
  #15  
Old Oct 12, 2010, 09:30 AM
papalagi
 
41 posts · Nov 2009
resolved: i was editing the css.php in the wrong version of the theme

anyway i had to tweak the php file, no results adding code in HTML/CSS inserts, maybe a bug in 3.5.1?
  #16  
Old Oct 12, 2010, 09:36 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
if all you added to CSS Inserts was
HTML Code:
margin-top: 10px; 
margin-bottom: 10px;
nothing would work because those are the rules. you must have a CSS Selector before the rules to define where the rules will be applied.

By editing the css.php, you will now have to do it everything there is an upgrade. I have yet to see something that has to be put there because you can't put it in the CSS Inserts.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #17  
Old Oct 21, 2010, 05:30 PM
sonya
 
16 posts · Jun 2009
Austin, TX
So I've changed the SEO options in ATO->Configure SEO->Make Post/Page Titles H1? and set it to NO. Is there any way to set the headline color on single post pages so it doesn't default to black?

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] How do I change the posts column GustavK Center area post/pages 2 Feb 25, 2010 12:44 PM
[SOLVED] How do i get in the ftp file and change the header picture? Change font colo lmt Header configuration & styling 17 Jan 22, 2010 03:54 AM
Page Titles Change Color but Posts Do Not Jrdpa Post-Kicker, -Byline & -Footer 1 Oct 27, 2009 11:06 AM
[SOLVED] Change the line length / length of sentences in posts and pages leifkendall Post-Kicker, -Byline & -Footer 2 Sep 30, 2009 07:46 AM
I'd like to change the font in posts Liz Atahualpa 3 Wordpress theme 2 Feb 16, 2009 09:09 AM


All times are GMT -6. The time now is 09:08 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.