alishiaM
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Compare Headings not aligning
Started by: alishiaM in: Toolset Professional Support |
2 | 5 | 5 years ago | ||
HOw to create a sticky compare button and Post Title
Started by: alishiaM
in: Toolset Professional Support
Problem: The issue here is that the user wanted to have some of their text to be sticky so that it scrolls with the user when they scroll on the browser page. Solution: You can use the follow to do this. HTML <div id="sticky-anchor"></div> <div class="sticky"><h5>[wpv-post-link]</h5></div> CSS .stick { position: fixed; top: 0; z-index: 10000; } Javascript function sticky_relocate() { var window_top = jQuery(window).scrollTop(); var div_top = jQuery('#sticky-anchor').offset().top; if (window_top > div_top) { jQuery('.sticky').addClass('stick'); } else { jQuery('.sticky').removeClass('stick'); } } jQuery(function() { jQuery(window).scroll(sticky_relocate); sticky_relocate(); }); So what this does is that it detects the browser scroll and then applies the css to stick the items to the top of the page. |
2 | 8 | 5 years, 1 month ago | ||
Multi-select search option cuts off
Started by: alishiaM
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 3 | 6 years ago | ||
How to display view as widget and result
Started by: alishiaM
in: Toolset Professional Support
Problem: Solution: See screenshot: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 5 months ago |