wpfun2011
Forum Replies Created
-
Forum: Plugins
In reply to: [Easing Slider] [Plugin: Easing Slider] FF IssueI fixed my probelm by going into the slider.css file plugin editor and changing the 2nd line:
the line that reads .lof container used to say {position: relative — I made it match with the .lof-slidecontent.preload and fixed the values to make it go where we needed it to be… it now looks like this
.lof-slidecontent, .lof-slidecontent a { color:#FFF; }
.lof-container {}.lof-slidecontent{ position:absolute; top:30; left:484; z-index:2; height: 100%; width: 100%;}
.lof-slidecontent .preload{ position:absolute; top:0; left:0; z-index:2; height: 100%; width: 100%;}Forum: Themes and Templates
In reply to: Help pleaseIn my case my preloader was appearing in the correct spot, however the images were being displaced to the right: I fixed it by doing the following:
I went into the plugin css and changed the “.lof-container” content block from “fixed” to “absolute – with the same references as in the .lof-slidecontent.preload” (this was located 1 line down fomr the previous container) and I just put in the values of where my slider should appear in my page (different for everyone)
Here are the first few lines of my css page for the slider:
.lof-container {}.lof-slidecontent{ position:absolute; top:30; left:484; z-index:2; height: 100%; width: 100%;}
.lof-slidecontent .preload{ position:absolute; top:0; left:0; z-index:2; height: 100%; width: 100%;}Hope this helps. It works in all browsers for me. 🙂
Forum: Plugins
In reply to: [Plugin: Easing Slider] Easing Slider messing up in IE7This is happening to me in ff only, HELP!!! Please 🙂 Thank you.
Forum: Fixing WordPress
In reply to: How to seperate my slider from showing on posts??<?php if (function_exists(‘easing_slider’)){ easing_slider(); }; ?>
Forum: Fixing WordPress
In reply to: How to seperate my slider from showing on posts??Put this code in your header.php file in your template where you want it to show up.
Hope this helps.
Forum: Plugins
In reply to: [Easing Slider] [Plugin: Easing Slider] FF IssueI have the same problem in firefox… I went to see gio.ferre’s site and it looks in line… how did you fix it?