Skip to main content
augustot26893154
Inspiring
September 12, 2017
Answered

Ancora in pagina esterna Dreamwever cc 2017

  • September 12, 2017
  • 1 reply
  • 472 views

Buona sera,

sto imparando ad usare Dreamweaver CC 2017 ma ho questo problema:

da una pagina web devo accedere ad una posizione all'interno di un'altra pagina web; con Dreamweaver CS6 usavo le ancore ma qui non mi ci trovo.

Qualcuno mi può aiutare?

Grazie

Augusto

---------------

Good evening,
i am learning to use Dreamweaver CC 2017 but i have this problem:
from a web page I have to access a position within another web page; with Dreamweaver CS6 I used the anchors but here I do not find it.

Can someone help me?

Thank you

August

This topic has been closed for replies.
Correct answer Jon Fritz

"Named Anchors" are considered an obsolete method of linking to specific content in the HTML5 Specification and have had their button removed from the program.

Instead, use html ids on the content you want to link to, for example...

<div id="news">
News information here
</div>

<a href="#news">Go to the News section</a>

To add an id, simply click the container or highlight the content you want to link to. You then add a unique id in the Id field of the Properties window. Keep in mind that an html id can only be used once on any given page.

You then link to the id by using # followed by the id name in the Link field of the Properties window when you have your link highlighted.

1 reply

Jon Fritz
Community Expert
Jon FritzCommunity ExpertCorrect answer
Community Expert
September 12, 2017

"Named Anchors" are considered an obsolete method of linking to specific content in the HTML5 Specification and have had their button removed from the program.

Instead, use html ids on the content you want to link to, for example...

<div id="news">
News information here
</div>

<a href="#news">Go to the News section</a>

To add an id, simply click the container or highlight the content you want to link to. You then add a unique id in the Id field of the Properties window. Keep in mind that an html id can only be used once on any given page.

You then link to the id by using # followed by the id name in the Link field of the Properties window when you have your link highlighted.