Hi. I'm excited to try using Hot Glue with my students as a way to ease them into web development/design. I'm excited that I can integrate custom CSS, HTML, and scripting codes, meaning I can introduce those to students within an inviting WYSIWYG environment.
When playing with the ability to add custom code to the header, I noticed a weird phenomenon. When I add some styling header code to the site, e.g.:
<style>
body{
color:black;
}
a:link{
color:blue;
font-weight:bold;
}
a:hover {
background-color: yellow;
}
div{
padding:10px;
}
</style>
All of the style is applied properly, except the 'color' tag for the A tag. Inline links made using "a href=...." just default to the text color unless I explicitly add an inline 'style' command to each individual 'a' tag.
Is this just an oversight, or is it by design?