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 » Header configuration & styling »

Putting Flash between %logo and %menu


  #1  
Old Apr 10, 2009, 08:34 AM
eyup
 
34 posts · Mar 2009
Putting Flash between %logo and %menu

Hi Flynn,

I've managed to put a Flash banner below the logo and menu area -

http://conraddavies.com/hif/

but would like to put it between these two elements - so the logo is above and the menu below.
Is that possible?

Regards

(ps dosh inbound)
  #2  
Old Apr 11, 2009, 05:22 AM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
At the moment you'd have to edit functions/bfa_header_config.php for this

Change
PHP Code:
    $logo_area .= '</tr></table>';    
    
// END of Logo Area 

to

PHP Code:
    $logo_area .= '</tr></table>';    
    
// END of Logo Area 
}

$logo_area .='
YOUR CODE HERE
'

to append your code to the logo area

Last edited by Flynn; Apr 11, 2009 at 09:46 PM. Reason: Changed $logo_are to $logo_area
  #3  
Old Apr 11, 2009, 07:10 AM
eyup
 
34 posts · Mar 2009
Hi Flynn,

Thanks for the quick response.

I'm getting this:

Parse error: syntax error, unexpected T_STRING in /home/conraddavies/BE9N04NB/htdocs/hif/wp-content/themes/atahualpa332/functions/bfa_header_config.php on line 191

(I presume - $logo_are .=' should also be $logo_area .=' ) - 'area' not 'are'?




PHP Code:
        // END of Search box 

    
$logo_area .= '</tr></table>';    
    
// END of Logo Area 
}

$logo_area .='
<script src="http://conraddavies.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script type="text/javascript">
AC_FL_RunContent( '
codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','960','height','180','src','/hif/wp-content/themes/atahualpa332/images/header/hif','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','/hif/wp-content/themes/atahualpa332/images/header/hif' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="960" height="180">
          <param name="movie" value="/hif/wp-content/themes/atahualpa332/images/header/hif.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <embed src="/hif/wp-content/themes/atahualpa332/images/header/hif.swf" quality="high" wmode="opaque" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="960" height="180"></embed>
        </object></noscript>
'; 

if (strpos($header_items,'%image')!==false) {
    // Header Image 
  #4  
Old Apr 11, 2009, 09:45 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Yes, that should have been logo_area, sorry, and fixed it in the post above

Also, replace all single quotes in your code (not in the complete code, just in your code) with double quotes
  #5  
Old Apr 12, 2009, 05:31 AM
eyup
 
34 posts · Mar 2009
It worked! Cheers Flynn.

One thing though - in Firefox and Safari there is a gap above the menu and below the Flash. In IE7 it's OK. Any ideas how to get rid?

  #6  
Old Apr 12, 2009, 08:54 AM
eyup
 
34 posts · Mar 2009
Ah haa - sussed it!

I put the flash code in a div with the specified height!

So for anybody else wanting to do this here's the final code:

PHP Code:
        // END of Search box 

    
$logo_area .= '</tr></table>';    
    
// END of Logo Area 
}

$logo_area .='
<div style="height: 180px;"><script src="http://conraddavies.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script type="text/javascript">
AC_FL_RunContent( "codebase","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0","width","960","height","180","src","/hif/wp-content/themes/atahualpa332/images/header/hif","quality","high","pluginspage","http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash","movie","/hif/wp-content/themes/atahualpa332/images/header/hif" ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="960" height="180">
          <param name="movie" value="/hif/wp-content/themes/atahualpa332/images/header/hif.swf" />
          <param name="quality" value="high" />
          <embed src="/hif/wp-content/themes/atahualpa332/images/header/hif.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="960" height="180"></embed>
</object></noscript></div>
'
;
if (
strpos($header_items,'%image')!==false) {
    
// Header Image 
Of course don't forget to upload AC_RunActiveContent.js (in mine it's in a folder called 'Scripts' in the root directory).

Bookmarks

Tags
flash, header



Similar Threads
Thread Thread Starter Forum Replies Last Post
Showing Logo Next To Page Menu Navigation? mannitol Page & Category Menu Bars 6 Jul 28, 2011 10:43 AM
How do I move drop down menu bar for pages under logo area and header image? barfarf Header configuration & styling 1 Apr 22, 2009 11:49 AM
2 Questions Flash header not working and custom Menu adventurer11 Header configuration & styling 1 Apr 5, 2009 05:09 PM
SWF - Flash Logo Longtail Header configuration & styling 5 Feb 28, 2009 12:37 PM
Putting a image background in the header's logo area kirinafa Header configuration & styling 2 Feb 18, 2009 04:08 PM


All times are GMT -6. The time now is 05:25 AM.


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