> Is there a css way to affect where a section link scrolls to when using the > SectionLinksPlugin? I am needing it farther down on the screen and not sure > what to apply the padding to in stylesheet. I hope that makes sence.
SectionLinksPlugin scrolls you to the section heading that defines the section. It is not based on CSS, so there is no "padding" that you can add to a class in your StyleSheet. If you want to scroll to a different location within the tiddler, you need to create either a section heading at that location, e.g., !somename or an HTML "anchor" at that location, e.g., <html><a name="somename" /></html> The first method creates an actual section definition within the tiddler, using standard TWCore heading syntax. You can then link to that section (e.g., [[TiddlerName##somename]]) or transclude that section (e.g., <<tiddler TiddlerName##somename>>)). However, that method also renders the section heading as a header (H1) format within the content, so it is visible to the user. If you want to create an *invisible* location for scrolling, you need to use the second method, which creates a named HTML anchor that can be used in links that hot-scroll (e.g., [[TiddlerName##somename]]), but does *NOT* create a section definition or visible heading output. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios ---- WAS THIS ANSWER HELPFUL? IF SO, PLEASE MAKE A DONATION http://www.TiddlyTools.com/#Donations note: donations are directly used to pay for food, rent, gas, net connection, etc., so please give generously and often! Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

