About this topic

  • Posted by rradvice 2 years ago. There are 5 posts. The latest reply is from byron.
  • This topic is not resolved

Tags

  1. I was trying to reposition the bwbps_addphoto_link class. But I can't call it from my stlye.css and could not find it in /wp-content/plugins/photosmash-galleries/css/bwbps.css

    Ideally, I would like to be able to reference <span class="bwbps_addphoto_link"> and use css in my style.css to repositions it and maybe add a button image for the link

  2. Got it repositioned - Posted the solution http://www.rradvice.com/plugins/photosmash-installing-design-testing

  3. Thanks for posting the solution! Sorry for the delay in reply...been out of town.

    Cheers,
    Byron

  4. i know this answer was posted above by "rradive" with a link, but the link is now dead. so, i thought i'd post a solution i got from byron in an email exchange. i hope it might help someone else down the road.

    The easy thing to do here is to use jQuery to move the enclosing element to be a child of another element. So, you'd want to put a script something like this in your page (or post):

    <script type='text/javascript'> jQuery(document).ready(function() { jQuery("span.bwbps_addphoto_link").appendTo("#my_new_home");jQuery("span.bwbps-rating-toggle").appendTo("#my_new_toggle_home");});</script>

    <div id="my_new_home">
    </div>

    <div id="my_new_toggle_home">
    </div>

    That would move all of the Add Photo Links that are in a SPAN with class 'bwbps_addphoto_link' to an element with the ID my_new_home. Same thing for the toggle.

    his solution worked for me. hope it helps.

  5. Thanks, Victor.

    BB

RSS feed for this topic