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 »

Header shows in Safari but not in IE7


 
Prev Previous Post   Next Post Next
  #1  
Old Sep 24, 2009, 11:36 AM
AbbyDon
 
10 posts · Sep 2009
Header shows in Safari but not in IE7

I'm unable to view the header image in IE7 (www.becomingaprayingcongregation.com) but I can view it in Firefox. Are there existing issues or is there something I need to correct.

Here's what the CSS looks like:
<?php
function bfa_rotating_header_images() {

if (file_exists(ABSPATH."/wpmu-settings.php")) {

################### images in WP upload folder (on WPMU)

$files = m_find_in_dir(url('/wp-content/themes/atahualpa/images/header/weblabryinthheaderghosted.jpg'),
'atahualpa_header_[0-9]+\.(jpe?g|png|gif|bmp)$');

if ($files) {
foreach($files as $value) {
$bfa_header_images[] = "'" . str_replace(url('/wp-content/themes/atahualpa/images/header/weblabryinthheaderghosted.jpg'),
url('/wp-content/themes/atahualpa/images/header/weblabryinthheaderghosted.jpg'), $value) . "'";
}
}

}

# If no user uploaded header image files were found in WPMU, or this is not WPMU:

if (!file_exists(ABSPATH."/wpmu-settings.php") OR !$files ) {


################### images in /images/header/ (on regular WordPress)

$files = "";
$imgpath = TEMPLATEPATH . '/images/header/';
$imgdir = get_bloginfo('template_directory') . '/images/header/';
$dh = opendir($imgpath);

while (FALSE !== ($filename = readdir($dh))) {
if(eregi('.jpg', $filename) || eregi('.gif', $filename) || eregi('.png', $filename)) {
$files[] = $filename;
}
}
closedir($dh);

foreach($files as $value) {
$bfa_header_images[] = '\'' . $imgdir . $value . '\'';
}

}


return $bfa_header_images;
}
?>
 

Bookmarks

Tags
header firefox ie7



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Atahualpa IE7 &quot;endif&quot; Error header.php Actus Atahualpa 3 Wordpress theme 3 Sep 23, 2009 08:42 PM
Header image is showing on Firefox and Safari but not on iE aquilaciencia Header configuration & styling 4 Aug 11, 2009 09:07 AM
Only Part Of The Header Shows In IE mal1986 Header configuration & styling 1 Jun 9, 2009 05:38 AM
Added header images, now none show on Firefox, Safari, etc. ldaily Header configuration & styling 5 Mar 13, 2009 05:36 PM
Firefox and Safari show 3 columns. IE only shows 2. How do I resolve? rwang Sidebars & Widgets 9 Dec 20, 2008 03:46 AM


All times are GMT -6. The time now is 03:37 PM.


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