How to change color of html link and remove text decoration ?

I am testing the Trial version of PlanetPress Connect Designer.

I cannot change color and text-decoration of a simple link. I know how to change it via CSS or via the source code, but I will have to teach how the designer works to non technical people.

Can anybody try this basic test and tell me if it works ?

  1. Write “My link”
  2. Highlight the text
  3. Right click > Hyperlink > Insert…
  4. Type in “#” in the "URL field and click “OK” to close the dialog box
    /!\ Keep the text highlighted
  5. Go to “Format” Menu > Color > Other
  6. Change Color to #999999
  7. Uncheck “underline”
  8. Apply and close Dialog box
  9. Go to Preview Mode

If you are lucky, you will be able to see the color changed, but the text is still underlined with blue color.

<a href="#" target="_blank"><span style="color: rgb(153, 153, 153);">My LInk</span></a>

If you happen to lose focus on text after the 4th point, you will not be able to style the color anymore. The only way to highlight the text again, is to use CTRL + T on text (or Right click > Text…). If you try to change the properties (color and text-decoration), you won’t see any change in preview mode. The HTML code will be :

<span style="color: rgb(153, 153, 153);"><a href="#" target="_blank">My link</a>

The HTML code tells by itself. The text properties are never applied to the <a> tag, so it cannot be rendered as asked by the user.

Can anybody tell me if you experiment the same difficulty ?
This is very annoying for users who do not manage HTML.

I am using version 1.6.1.40597 of PlanetPress Connect Designer

I cant get it to change color either but can via CSS. One of the OL devs here might be able to come up with something but I think that might be something to change in a future update.

*a{
color: green;
}

Thank you for testing this.
Could you make a last test about my other strange behaviour compiled described in this question : How to center text in a table cell ? - General - Upland OL User community ?