Changeset 2574835
- Timestamp:
- 07/29/2021 04:03:43 PM (5 years ago)
- File:
-
- 1 edited
-
timify/trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
timify/trunk/readme.txt
r2573005 r2574835 60 60 61 61 == Frequently Asked Questions == 62 *How do I control the post types, like pages and custom post types, the reading time and last modified to show on? 63 Just navigate to the Timify settings page and select “Apply Post Type” to your preferred [post types.Reading Time WP defaults to posts and pages. More information is described in description. 64 *Does the Timify Plugin support shortcodes? 65 Yes, it does. Just navigate the settings menu and select from the dropdown menu in “Reading Time Display Method” and “Last Modified Time Display Method” option. 62 <style> 66 63 64 65 .content { 66 } 67 68 /*Question*/ 69 .question { 70 color: #0073AA; 71 text-shadow: .1px 0px #b2bdae; 72 position: relative; 73 background: #f9f9f9; 74 margin: 0; 75 padding: 10px 10px 10px 50px; 76 display: block; 77 width:100%; 78 cursor: pointer; 79 } 80 /*Answer*/ 81 .answers { 82 padding: 0px 15px; 83 margin: 5px 0; 84 width:100%!important; 85 height: 0; 86 overflow: hidden; 87 z-index: -1; 88 position: relative; 89 opacity: 0; 90 -webkit-transition: .3s ease; 91 -moz-transition: .3s ease; 92 -o-transition: .3s ease; 93 transition: .3s ease; 94 } 95 96 .questions:checked ~ .answers{ 97 height: auto; 98 opacity: 1; 99 padding: 15px; 100 101 } 102 103 /*FAQ Toggle*/ 104 .plus { 105 color:#0073AA; 106 position: absolute; 107 margin-left: 10px; 108 margin-top: 7px; 109 z-index: 5; 110 font-size: 1.5em; 111 line-height: 100%; 112 -webkit-user-select: none; 113 -moz-user-select: none; 114 -ms-user-select: none; 115 -o-user-select: none; 116 user-select: none; 117 -webkit-transition: .3s ease; 118 -moz-transition: .3s ease; 119 -o-transition: .3s ease; 120 transition: .3s ease; 121 122 } 123 124 .questions:checked ~ .plus { 125 -webkit-transform: rotate(90deg); 126 -moz-transform: rotate(90deg); 127 -o-transform: rotate(90deg); 128 transform: rotate(90deg); 129 130 } 131 132 .questions { 133 display: none; 134 135 } 136 </style> 137 <div class="content"> 138 <div> 139 <input type="checkbox" id="question1" name="q" class="questions"> 140 <div class="plus">></div> 141 <label for="question1" class="question"> 142 How do I control the post types, like pages and custom post types, the reading time and last modified to show on? </label> 143 <div class="answers"> 144 Just navigate to the Timify settings page and select “Apply Post Type” to your preferred post types.Reading Time WP defaults to posts and pages. More information is described in description.</div> 145 </div> 146 147 <div> 148 <input type="checkbox" id="question2" name="q" class="questions"> 149 <div class="plus">></div> 150 <label for="question2" class="question"> 151 Does the Timify Plugin support shortcodes? 152 </label> 153 <div class="answers"> 154 Yes, it does. Just navigate the settings menu and select from the dropdown menu in “Reading Time Display Method” and “Last Modified Time Display Method” option. </div> 155 </div> 156 </div> 157 </div> 67 158 68 159 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.