Title: Brucenstein's Replies | WordPress.org

---

# Brucenstein

  [  ](https://wordpress.org/support/users/brucenstein/)

 *   [Profile](https://wordpress.org/support/users/brucenstein/)
 *   [Topics Started](https://wordpress.org/support/users/brucenstein/topics/)
 *   [Replies Created](https://wordpress.org/support/users/brucenstein/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/brucenstein/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/brucenstein/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/brucenstein/engagements/)
 *   [Favorites](https://wordpress.org/support/users/brucenstein/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smart Forms - when you need more than just a contact form] (1) Formatting Text in Multiple Choice and (2) Form Recursion](https://wordpress.org/support/topic/1-formatting-text-in-multiple-choice-and-2-form-recursion/)
 *  Thread Starter [Brucenstein](https://wordpress.org/support/users/brucenstein/)
 * (@brucenstein)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/1-formatting-text-in-multiple-choice-and-2-form-recursion/#post-13362854)
 * Found the pure text (“HTML”) field option; apologies for not searching properly
   first. Marking as closed.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smart Forms - when you need more than just a contact form] (1) Formatting Text in Multiple Choice and (2) Form Recursion](https://wordpress.org/support/topic/1-formatting-text-in-multiple-choice-and-2-form-recursion/)
 *  Thread Starter [Brucenstein](https://wordpress.org/support/users/brucenstein/)
 * (@brucenstein)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/1-formatting-text-in-multiple-choice-and-2-form-recursion/#post-13346731)
 * FYI, in playing with the formula dealy some more I think I can “hard code” the
   logic I’m looking for (apologies, I completely missed the option to use a “formula”
   before). I’m not entirely sure how it’s going to look but I’m guessing I *can*
   do that.
 * However, I would like a message to come up depending on the logic – a simple 
   text box – explaining the error. So in the above example if they chose yes/yes/
   no to the all dogs have spots/rover is a dog/rover has spots questions, I would
   like a non-editable textbox/label to come up that says “This is inconsistent 
   because you previously stated all dogs have spots”.
 * For the life of me I can’t find out how to put in text without using a survey
   question or similar.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Envira Gallery - Image Photo Gallery, Albums, Video Gallery, Slideshows & More] Multiple Galleries in Same Page (EnviraLite)](https://wordpress.org/support/topic/multiple-galleries-in-same-page-enviralite/)
 *  Thread Starter [Brucenstein](https://wordpress.org/support/users/brucenstein/)
 * (@brucenstein)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/multiple-galleries-in-same-page-enviralite/#post-6211128)
 * Thank you for the response, and apologies for the delay. It works right out of
   the box without issue – the error was mine.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to Create Vertical Default Menu – Changing Menu Behavior in Underscores](https://wordpress.org/support/topic/how-to-create-vertical-default-menu-changing-menu-behavior-in-underscores/)
 *  Thread Starter [Brucenstein](https://wordpress.org/support/users/brucenstein/)
 * (@brucenstein)
 * [11 years ago](https://wordpress.org/support/topic/how-to-create-vertical-default-menu-changing-menu-behavior-in-underscores/#post-6077262)
 * Solved! It actually was super easy – you simply need to add a 100% width value
   to your ULs and an inherit width value to your li’s. Here’s the code:
 *     ```
       .main-navigation ul {
       	list-style: none;
       	margin: 0;
       	padding-left: 0;
       	width: 100%;
       }
   
       .main-navigation li {
       	float: left;
       	position: relative;
       	width: inherit;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cyclone Slider] Slider Not Working on Custom Theme](https://wordpress.org/support/topic/slider-not-working-on-custom-theme/)
 *  Thread Starter [Brucenstein](https://wordpress.org/support/users/brucenstein/)
 * (@brucenstein)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/slider-not-working-on-custom-theme/#post-4269360)
 * Further info:
 * I’ve narrowed it down to the cyclone-2 .js libraries not being loaded. I copied/
   pasted this into my header.php in my child theme and it worked:
 *     ```
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.min.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.carousel.min.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.swipe.min.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.tile.min.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/libs/cycle2/jquery.cycle2.video.min.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/dark/script.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/default/script.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/standard/script.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/templates/thumbnails/script.js?ver=2.7.6'></script>
       <script type='text/javascript' src='http://janeryder.com/wp-content/plugins/cyclone-slider-2/js/client.js?ver=2.7.6'></script>
       ```
   
 * Anyone know why these wouldn’t be called when I simply insert the php code generated
   by the slider?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cyclone Slider] Slider Not Working on Custom Theme](https://wordpress.org/support/topic/slider-not-working-on-custom-theme/)
 *  Thread Starter [Brucenstein](https://wordpress.org/support/users/brucenstein/)
 * (@brucenstein)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/slider-not-working-on-custom-theme/#post-4269348)
 * FYI, check out the test page I set up [here](http://janeryder.com/?page_id=2#).
 * Note there are TWO sliders on the page, those are not 2 images from the same 
   slider. The slider stays on the first slide and doesn’t do anything thereafter(
   the top slider has nav arrows, the bottom does not, neither have the dots beneath
   the slider).
 * I think the problem could be the theme using an old version of JQuery (1.5). 
   However, I’ve tried commenting out the calls to that as well as deleting ALL 
   the .js files in the theme’s /js/ directory to no avail.

Viewing 6 replies - 1 through 6 (of 6 total)