Featured Content Gallery | WordPress Plugin | iePlexus

FCG v3.1.1 broken on IE6

New releases, ideas for the future, and known issues

Re: FCG v3.1.1 broken on IE6

PostBy dogliriousJP on Wed Mar 11, 2009 5:41 am

Yes, thank you for posting this quick fix!
Justin
http://www.doglirious.com - Dog product reviews, discounts, training tips, health & care advice, and expert articles.
User avatar
dogliriousJP
 
Posts: 7
Joined: Mon Jan 26, 2009 11:01 am
Location: Atlanta, GA

Re: Re: FCG v3.1.1 broken on IE6

Thank you for using the Featured Content Gallery Forum
 

Re: FCG v3.1.1 broken on IE6

PostBy Alexd on Thu Mar 19, 2009 4:04 am

Great fix, this was causing a few problems

Thanks :D
User avatar
Alexd
 
Posts: 1
Joined: Thu Mar 19, 2009 3:57 am

Re: FCG v3.1.1 broken on IE6

PostBy realworldcs on Fri Mar 27, 2009 11:33 am

Hi, Just started using the FCG in our site and noticed the same issue with IE6 and the pop-up appearing halfway up as opposed to the bottom.

Am I correct in saying that the CSS change from 'bottom: 100px' TO 'bottom: 0px' fixes this problem and does not break FCG for other browsers?

cheers if you can confirm this for me.
User avatar
realworldcs
 
Posts: 2
Joined: Fri Mar 27, 2009 11:27 am

Re: FCG v3.1.1 broken on IE6

PostBy admin on Fri Mar 27, 2009 11:48 am

yes
Yelena Khamidullina
Web Applications Developer, iePlexus

1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
User avatar
admin
Site Admin
 
Posts: 4738
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: FCG v3.1.1 broken on IE6

PostBy realworldcs on Fri Mar 27, 2009 12:08 pm

thanks for the swift response.
made the change and all seems to work.
cheers.
User avatar
realworldcs
 
Posts: 2
Joined: Fri Mar 27, 2009 11:27 am

Re: FCG v3.1.1 broken on IE6

PostBy paulac on Mon Apr 06, 2009 12:53 pm

Perfect!
Thank you - from another happy camper.
paulac
 
Posts: 2
Joined: Thu Apr 02, 2009 7:53 am

Re: FCG v3.1.1 broken on IE6

PostBy admin on Mon Apr 06, 2009 1:04 pm

you are welcome
Yelena Khamidullina
Web Applications Developer, iePlexus

1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
User avatar
admin
Site Admin
 
Posts: 4738
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: FCG v3.1.1 broken on IE6

PostBy mlangham on Wed Apr 15, 2009 10:23 am

break in validation as well

the following is inserted into my html, of course in an area where it is not allowed:

Code: Select all
<style type="text/css">
   
   .jdGallery .slideInfoZone
   {
      height: 75px;
   }
   </style>


the height of course is determined in the admin area.

My theme has the
Code: Select all
(ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php');
placed in my index file.

Is there something i've missed in the setup that would allow the css to be targeted/placed in the head area?
mlangham
 
Posts: 3
Joined: Wed Apr 15, 2009 10:18 am

Re: FCG v3.1.1 broken on IE6

PostBy mlangham on Wed Apr 15, 2009 10:47 am

I found the solution to this in another post on the forum.

Basically, all it takes is to remove this
Code: Select all
    <style type="text/css">
   
   .jdGallery .slideInfoZone
   {
      height: <?php echo get_option('gallery-info'); ?>px;
   }
   </style>

from the gallery.php file and place it in the head area of your theme's header.php file

this is how this looks in the first lines of my header.php file
Code: Select all
<?php
/**
* @package WordPress
* @subpackage rebirth
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>

<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.ico" />
<link rel="ico" type="image/ico" href="<?php bloginfo('template_url'); ?>/images/favicon.ico" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<!--[if lt IE 7]>
        <script type="text/javascript" src="js/unitpngfix.js"></script>
<![endif]-->

    <style type="text/css">
   
   .jdGallery .slideInfoZone
   {
      height: <?php echo get_option('gallery-info'); ?>px;
   }
   </style>




<?php wp_head(); ?>

</head>
<body>


it works. and most importantly, my them validates! :)
mlangham
 
Posts: 3
Joined: Wed Apr 15, 2009 10:18 am

Previous

Return to Development, Improvement, and Conflicts

Who is online

Users browsing this forum: No registered users and 0 guests