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 » Forum Usage » Forum How-To »

Can Rotate Header and Resize Header work together?


  #1  
Old Jun 6, 2009, 01:37 PM
thetravelchronicle
 
97 posts · May 2009
I love the new Rotate Header feature in 3.3.3, and am not sure I'd switch to a fade or wipe feature if it were available.
Is it possible to adapt the resize instructions from "Automatic resizing of the header image"...

http://forum.bytesforall.com/showthread.php?t=301

...to work with the rotate feature?

Also, now that the header rotates, the final vestigial value (to cycle through the header images) of the link in the logo area is pretty much gone. Can you suggest a way to eliminate the clickable logo?
  #2  
Old Jun 14, 2009, 12:31 PM
thetravelchronicle
 
97 posts · May 2009
It would appear that I asked a really dumb question. It would help to know why it's a really dumb question.
  #3  
Old Jun 14, 2009, 03:20 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
You haven't asked a dumb question (the only dumb question is the one unasked), however people who donate get higher priority.

To prevent the header from being clickable, shut it off in the options. (ATO-Header)

Will resizing and rotating work together, I don't think so as they are currently coded. you would have to make changes. My personal solution to this is to have long narrow images and have the image linked to the left of the page (so the right side loses/gains area when resizing) and the important part of the image always being on the left.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #4  
Old Jun 14, 2009, 04:49 PM
thetravelchronicle
 
97 posts · May 2009
One point of mystery - I have contributed to both theme development and to you, none of which has shown up with little gold bars or anything. Did Paypal not come through?

The Header I'm using is not clickable - I turned that off. It's the Logo area (for lack of a better identifier) that still has a link behind it.

>Will resizing and rotating work together, I don't think so as they are currently coded. you would have to make changes.

Any chance of encouraging development?

I'm using two monitors to test the range I'd like to optimize. One is a landscape ratio 24 inch model at 2048x1280, and the other is a standard ratio 17 inch at 1024x768. I've worked out an acceptable compromise (as far as image clipping) at 72 dpi with images centered, but the smaller monitor loses vertical geography and gains a clunky look without the proportional correction of a resize, and the larger monitor ends up with an image that doesn't even span the center container.

No sooner did the resize option turn up on the forum to solve the problem than the really cool rotate function came along - what a dilemma!

Depending on how big a tinker it would take to make both work, the results would provide a very sophisticated look.
  #5  
Old Jun 14, 2009, 07:44 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Send Flynn a PM about your donation and he will give you credit and could you send me a PM with your paypal id so I can tie your handle here with the paypal info.

To make the logo non clickable, edit bfa_header_config.php (in ver 3.3.3) and change
HTML Code:
		// Logo Icon for Wordpress and WPMU
		if ($bfa_ata['logo'] != "") { 
			$logo_area .= '<td ' . $header_rowspan . 'valign="middle" class="logoarea-logo"><a href="' . 
			get_option('home') . '/"><img class="logo" src="';
to
HTML Code:
		// Logo Icon for Wordpress and WPMU
		if ($bfa_ata['logo'] != "") { 
			$logo_area .= '<td ' . $header_rowspan . 'valign="middle" class="logoarea-logo"><img class="logo" src="';
As for mixing the two options...this is something that Flynn will have to look at since he is the developer.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #6  
Old Jun 18, 2009, 01:21 PM
thetravelchronicle
 
97 posts · May 2009
I did finally find time to eliminate the reload of the home page from the clickable logo link. However, I still have the hovering hand which implies that something should happen when you click there. Can you suggest a way to get rid of that as well?
  #7  
Old Jun 23, 2009, 08:17 PM
thetravelchronicle
 
97 posts · May 2009
Upon further review, the page is still being reloaded, it was just happening so fast in Firefox that I didn't realize it.
Bottom line, removing <a href="' . get_option('home') . '/"> doesn't get rid of the link.
  #8  
Old Jun 24, 2009, 08:48 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
please post the url
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #9  
Old Jun 24, 2009, 10:49 AM
thetravelchronicle
 
97 posts · May 2009
http://www.thetravelchronicle.net/
  #10  
Old Jun 24, 2009, 03:08 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Ahhh, that's not the logo area, that is the Blog Title which is still clickable. the idea is that if someone clicks on it, it will take them to the home page. If you don't want that clickable edit bfa_header_config.php and find the code (about line 99)
HTML Code:
	if ( $bfa_ata['overlay_blog_title'] == "Yes" OR $bfa_ata['overlay_blog_tagline'] == "Yes" ) {
			$header_image .= '<div class="titleoverlay">' . 
			( $bfa_ata['overlay_blog_title'] == "Yes" ? '<h' . $bfa_ata['h_blogtitle'] . ' class="blogtitle"><a href="' . get_option('home') . '/">' . 
			get_bloginfo('name') . '</a></h' . $bfa_ata['h_blogtitle'] . '>' : '' ) . ( $bfa_ata['overlay_blog_tagline'] == "Yes" ? '<p class="tagline">' . 
			get_bloginfo( 'description' ) . '</p>' : '' ) . '</div>';
		}
and change it to
HTML Code:
		if ( $bfa_ata['overlay_blog_title'] == "Yes" OR $bfa_ata['overlay_blog_tagline'] == "Yes" ) {
			$header_image .= '<div class="titleoverlay">' . 
			( $bfa_ata['overlay_blog_title'] == "Yes" ? '<h' . $bfa_ata['h_blogtitle'] . ' class="blogtitle">'  . 
			get_bloginfo('name') . '</h' . $bfa_ata['h_blogtitle'] . '>' : '' ) . ( $bfa_ata['overlay_blog_tagline'] == "Yes" ? '<p class="tagline">' . 
			get_bloginfo( 'description' ) . '</p>' : '' ) . '</div>';
		}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #11  
Old Jun 24, 2009, 07:24 PM
thetravelchronicle
 
97 posts · May 2009
Why I Try To Stay Out of The Code - By thetravelchronicle

Yep, that got rid of the link, and also changed the font I was using for the title (!?!) to something quite ugly.

Now that I've added a bunch of pages, the link to the homepage directly below the link to the homepage seems less redundant. Time to leave well enough alone.
Thanks for looking into it.

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] How to get a header image to rotate every 'N' seconds juggledad Header configuration & styling 49 May 22, 2011 04:01 PM
[SOLVED] cant seem to get this too work help please! link in header image sine Header configuration & styling 5 Jun 22, 2009 09:05 AM
Header Images Fail to Rotate Yarrokon Header configuration & styling 10 Jun 8, 2009 10:17 AM
Pls help with - How to get a header image to rotate every 'N' seconds (sticky) HavaLyon Header configuration & styling 9 Apr 27, 2009 08:30 AM
How do you get header Image(s) to automatically resize to the screen resolution? nkita Header configuration & styling 0 Mar 14, 2009 06:59 PM


All times are GMT -6. The time now is 10:19 PM.


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