studiokb
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Simple Share] ShortcodeEach page should have an option for disabling. In the right column you’ll see share settings. Tick to disable
Forum: Plugins
In reply to: [Advanced WP Columns] Text alignment changes in smaller browser windowI know this is an old thread, but for anyone else trying to solve this, it can be done with css:
@media only screen and (max-width: 1024px) .csRow .csColumn { text-align: left !important; }By default the text aligns center when browser width goes to 1024px and below. By adding the .csRow this makes the selection more specific and thus overwrites the inline style.
You need to add this in your theme’s css file, or the theme’s options page might have a field for custom css.Forum: Plugins
In reply to: [Testimonial Rotator] Next/Prev ButtonsSince the plugin has been updated to use cycle2 javascript plugin the previous instruction does not work. If you are using the latest rotator using cycletwo.js you can do the following:
In testimonial-rotator.php on line 438, you add the option for next and prev, and reference to what element that will trigger the next and previous slide –data-cycletwo-prev=\"#prev\" data-cycletwo-next=\"#next\"– This line begins$rtn .= " <div id=\"testimonial_rotator_{$id}\"where <div id=”testimonial_rotator_{$id}” is the parent of the elements that are sliding.This should output in the browser something like this:
<div id="testimonial_rotator_56" class="testimonial_rotator cycletwo-slideshow" data-cycletwo-pause-on-hover="#testimonial_rotator_56" data-cycletwo-speed="750" data-cycletwo-timeout="3000" data-cycletwo-slides="> div.slide" data-cycletwo-auto-height="calc" data-cycletwo-fx="scrollHorz" data-cycletwo-next="#next" data-cycletwo-prev="#prev" style="position: relative; overflow: hidden;">Then in your page/post or template you add the html element which triggers the next or previous action. Eg.
<div class="nav"><a id="prev" href="#">Prev</a> <a id="next" href="#">Next</a></div>Hope this helps someone.