• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Inserting a hyperlink of formatted text

Engaged ,
Jun 17, 2021 Jun 17, 2021

Copy link to clipboard

Copied

Hi,

I want to create a hyperlink of a selected text which has several styles – e.g. here italic and bold-italic. But DW (CC) does not overtake the selected text to the dialog box: 

2021-06-17_shot_004.jpg

 

... as it does if it would have only one or no style:

mycc_0-1623924931049.png

 

Do you call it a bug? 😉 resp. 😞

 

Thanks!

mycc

TOPICS
Code , How to , Product issue

Views

220

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jun 17, 2021 Jun 17, 2021

No this is not a bug.  Link styles come from your CSS code. 

 

Example CSS:

a {
text-decoration:none;
font-weight:bold;
font-style: italic;
color:darkturquoise;
}

 

HTML:

<a href="https://example.com">Some Link</a>

 

Votes

Translate

Translate
Community Expert ,
Jun 17, 2021 Jun 17, 2021

Copy link to clipboard

Copied

LATEST

No this is not a bug.  Link styles come from your CSS code. 

 

Example CSS:

a {
text-decoration:none;
font-weight:bold;
font-style: italic;
color:darkturquoise;
}

 

HTML:

<a href="https://example.com">Some Link</a>

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines