rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Bar Slide not WorkingThat is not an option today – I’ll consider adding it for a future release — it is a good idea.
Until then, you can modify the embedded javascript to fix the topbar element. You can try this code — I have not even attempted this yet — so I can’t help if it doesn’t work.
http://www.wduffy.co.uk/blog/keep-element-in-view-while-scrolling-using-jquery/
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Bar Slide not WorkingLooks like your delay is set to zero. Your html is below. Double check your settings?
<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘#wptbheadline’).hide();
jQuery(‘#wptbheadline’).delay(0);
jQuery(‘#wptbheadline’).css(“visibility”,”visible”);
jQuery(‘#wptbheadline’).slideDown(0).fadeIn(1000);
jQuery(‘#wptbheadline’).show(“slow”);
});Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Open in Same Window / Not NewYou need to change this line in wp-topbar:
From
“href=”<?php echo $wptbOptions[‘bar_link’]; ?>”target=”_blank”><?php echo stripslashes_deep($wptbOptions[‘bar_link_text’]); ?>
to:
“href=”<?php echo $wptbOptions[‘bar_link’]; ?>><?php echo stripslashes_deep($wptbOptions[‘bar_link_text’]); ?>
I can make this an option in a future version.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] This looked very promising – but . .Hmm.. not sure why it is not working for you. I’ve run it on genesis sites and not. Can use the chrome, select View | Developer | Developer Tools. in the developer tools, select the console tab and copy any messages found when you are on the TopBar settings page?
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-Topbar] AddslashesDone!
Forum: Plugins
In reply to: [Easing Slider] [Plugin: Easing Slider] center the imageI figured it out need to change two files:
Change slider.css:
——————Change second line:
From
.lof-container {}.lof-slidecontent{ position: relative;}to
.lof-container {}.lof-slidecontent{ position: relative; margin-left: auto; margin-right: auto;}2. add to end of css file:
img.lof-center {
display: block;
margin-left: auto;
margin-right: auto;}Change easingslider.php
———————–Find the code to add the shadow Add [
class="lof-center"] and delete [margin-left:'.$slider->bwidth.'px]From:
echo '<img src="'.WP_PLUGIN_URL.'/easing-slider/images/shadow_'.$shadowstyle.'.png" style="width:'.$width.'px; padding-left:'.$padleft.'px;padding-bottom:'.$padding.'px;padding-top:'.$padtop.'px;margin-left:auto;margin-right:auto;" alt="" />'; ?><!-- End of Easing Slider --><?phpTo:
echo '<img src="'.WP_PLUGIN_URL.'/easing-slider/images/shadow_'.$shadowstyle.'.png" style="width:'.$width.'px; padding-left:'.$padleft.'px;padding-bottom:'.$padding.'px;padding-top:'.$padtop.'px;" alt="" class="lof-center" />'; ?><!-- End of Easing Slider --><?phpForum: Plugins
In reply to: [Easing Slider] [Plugin: Easing Slider] center the imageI’d like to have an option (in addition to adding padding) to center the images and the shadow.
I did try putting the slider in a div as follows:
<div class=”myeasingslider”>[easingslider]</div>
I then added a .myeasingslider class to my CSS.
However, WordPress, renders Easing Slider outside of the div I created. The html is below. Not sure how to fix that.
Bob
—————————————
<div class=”post-bodycopy clearfix”> <!– Easing Slider –>
<div class=”lof-container” style=”height:300px;padding-right:0px;padding-top:0px;padding-left:0px;padding-bottom:0px;”>
<div class=”lof-slidecontent” id=”lofslidecontent45″ style=”border:3px solid #ccc;width:480px;height:300px;”>
<div class=”preload” style=”background-image: url(http://localhost/wp/wp-content/plugins/easing-slider/images/indicator.gif); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(255, 255, 255); display: none; background-position: 50% 50%; background-repeat: no-repeat no-repeat; “></div>
<div class=”lof-main-outer” style=”background: #fff;width:480px;height:300px;”>
<ul class=”lof-main-wapper” style=”width: 2400px; left: -1920px; “>- <img src=”http://localhost/wp/wp-uploads/galleries/2010smallfrontpage/20100305-DSC_3299.jpg” style=”width:480px;” alt=””>
- <img src=”http://localhost/wp/wp-uploads/galleries/2010smallfrontpage/20100305-DSC_2968.jpg” style=”width:480px;” alt=””>
- <img src=”http://localhost/wp/wp-uploads/galleries/2010smallfrontpage/20100305-DSC_2828.jpg” style=”width:480px;” alt=””>
- <img src=”http://localhost/wp/wp-uploads/galleries/2010smallfrontpage/20100305-DSC_3292.jpg” style=”width:480px;” alt=””>
- <img src=”http://localhost/wp/wp-uploads/galleries/2010smallfrontpage/20100305-DSC_3029.jpg” style=”width:480px;” alt=””>
</div> <div class=”lof-navigator-wapper” style=”bottom:-35px;left: 0;padding:5px 5px;”>
<div class=”lof-navigator-outer” style=”width: 125px; height: 15px; “>
<ul class=”lof-navigator” style=”width: 125px; left: 0px; “>
<li style=”height: 15px; width: 25px; ” class=””><span>.</span><li style=”height: 15px; width: 25px; ” class=””><span>.</span><li style=”height: 15px; width: 25px; ” class=””><span>.</span><li style=”height: 15px; width: 25px; ” class=””><span>.</span><li style=”height: 15px; width: 25px; ” class=”active”><span>.</span>
</div>
</div></div>
</div><img src=”http://localhost/wp/wp-content/plugins/easing-slider/images/shadow_large.png” style=”width:480px; padding-left:0px;padding-bottom:0px;padding-top:6px;margin-left:3px;” alt=””><!– End of Easing Slider –><div style=”height: 1.4em; visibility: hidden;”>A</div>
<div style=”height: 1.4em; visibility: hidden;”>A</div>
<div class=”myeasingslider”></div>
<div style=”height: 1.4em; visibility: hidden;”>A</div>
<hr size=”2″>