answer
New Commentator
oslingsby
posts: 3
registered: ‎04-13-2012
Accepted Solution
anchor

Hi, first post here :smileyhappy:

 

Is it possible to anchor within a lithium forum post?

 

Thanks

 

View Entire Topic
Claudius
posts: 400
topics: 51
kudos: 109
Ideas: 26
solutions: 34
registered: ‎03-07-2011
answered

Not sure if I got the question right, but you can link to each and every post/reply within a thread/topic by copying the link from the area left of each message where it says "Message 7 of 10". the result will be a link like the following which links to the 6th message in another thread:

http://lithosphere.lithium.com/t5/Customer-Connection/Changing-a-users-display-name/m-p/48371#M3197 

 

If you are referring to something else by "Anchor" please specify. 

If you appreciate my efforts, please give me a kudo ↘
Accept as solution to help others find it faster.


by oslingsby on ‎07-03-2012 08:19 AM
Thanks Claudius, im needing to link within a single post, we have a very long post with numerous problems/answers on a similar subject on a KB article with a summary of what is included in that article at the top of it so wanted to link with anchors down to each section, that make sense?
Thanks again
os
by VIP Council on ‎07-04-2012 03:03 AM
Hi os,

Yes, you can use normal HTML anchor notation and add it in the HTML view of the Rich Editor, e.g. either the HTML4 oldschool variant with the "name" attribute:

<a name="faq_no_5">FAQ entry 5</a>

or the (more) future safe HTML5 one using the "id" attribute:

<h2 id="faq_no_5">FAQ entry 5</h2>

Both can then be referenced using:

<a href="#faq_no_5">Jump to entry 5</a>

Be aware that you run into issues when used together with the message link I posted in my first reply. As long as your anchors are in the first message of a topic that should not be a problem though.
Hope this helps.
by oslingsby on ‎07-04-2012 07:11 AM
Perfect thanks Claudius, really appreciated :smileyhappy: