Changeset 1963259
- Timestamp:
- 10/26/2018 04:16:13 AM (7 years ago)
- Location:
- mythic-smooth-scroll/trunk
- Files:
-
- 2 edited
-
mythic-smooth-scroll.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mythic-smooth-scroll/trunk/mythic-smooth-scroll.php
r1960397 r1963259 60 60 do_settings_sections( 'mythic_ss_options' ); 61 61 ?> 62 <table style="text-align: left;"> 63 <tr valign="top"> 64 <th scope="row"><label for="mythic_ss_header_id">Header ID (Leave blank if you're header is not fixed)</label></th> 65 <td><input type="text" id="mythic_ss_header_id" name="mythic_ss_header_id" value="<?php echo get_option('mythic_ss_header_id'); ?>" /></td> 66 </tr> 67 <tr valign="top"> 68 <th scope="row"><label for="mythic_ss_offset_amount">Scroll Offset Amount (Default is 50). Will be added to fixed header's height.</label></th> 69 <td><input type="text" id="mythic_ss_offset_amount" name="mythic_ss_offset_amount" value="<?php echo get_option('mythic_ss_offset_amount'); ?>" pattern= "[0-9]+"/></td> 70 </tr> 71 </table> 62 <label for="mythic_ss_header_id"><strong>Header ID (Leave blank if you're header is not fixed)</strong></label><br> 63 <a href="#">Not sure how to find this?</a><br> 64 <input type="text" id="mythic_ss_header_id" name="mythic_ss_header_id" value="<?php echo get_option('mythic_ss_header_id'); ?>" /><br> 65 <br> 66 <label for="mythic_ss_offset_amount"><strong>Scroll Offset Amount (Default is 50). Will be added to fixed header's height.</strong></label><br> 67 <input type="text" id="mythic_ss_offset_amount" name="mythic_ss_offset_amount" value="<?php echo get_option('mythic_ss_offset_amount'); ?>" pattern= "[0-9]+"/><br> 68 <br> 72 69 <?php submit_button(); ?> 73 70 </form> -
mythic-smooth-scroll/trunk/readme.txt
r1960398 r1963259 1 1 === Mythic Smooth Scroll === 2 Contributors: (corybolles)2 Contributors: corybolles 3 3 Tags: smooth, scroll, jquery 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.9.8 6 6 Requires PHP: 5.2.4 7 Stable tag: 4. 37 Stable tag: 4.9.8 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 11 11 Smooth scrolling plugin with optional offset for fixed/sticky headers. 12 13 == Description == 14 The Mythic Smooth Scroll plugin is a very lightweight jQuery plugin for adding smooth scrolling animations on single-page websites or on longer posts with various anchors. 15 16 The plugin features an optional offset for fixed/sticky headers to make sure it always scrolls beneath the content, as well as an adjustable manual offset amount to determine how far from the header/top of the screen the content will land when scrolled to. 17 18 == Installation == 19 Click activate, and enjoy! The plugin will function for any links that go to a spot on the same page. You can adjust the plugin settings under the Settings > Mythic Smooth Scroll tab. 20 21 == Frequently Asked Questions == 22 How do I find my header\'s ID? 23 24 Your header\'s ID can be found by right-clicking it on your website, and selecting \"inspect\" or \"inspect element\", depending on your browser. This will open your browser\'s element inspector, which will display a list of your page\'s source code elements. Simply look for the \"header\" element, and copy the content that appears after id= (not including the quotes). 25 26 == Changelog == 27 1.0.1 28 ==== 29 Adjusted settings page UI, and added FAQs. 30 31 1.0.0 32 ==== 33 Plugin published to WP directory.
Note: See TracChangeset
for help on using the changeset viewer.