Scott_Mac
(Scott Mac)
1
I need your help!
No 1: I have “embeded custom code” from a script in navigation “login | register”
**No 2: When viewing live on the web the link in this embedded script is a blue hyper link
preview on website: https://preview.webflow.com/preview/thewaxinghubltd?preview=38f6a65c1d2297a27fea084575551c21
**No 3: How can i change the link to another colour and style the font size and font type
all help would be much appreciated as im a graphic designer and its for a clients website.
bro-design
(Dmitrii Tregubov)
2
Try insert this style in HEAD:
.healcode-link {
color: #1b1b1b;
text-decoration: none;}
.healcode-link:hover {
color: #ed7e25;}
Scott_Mac
(Scott Mac)
3
do i need to add this code within:
- the HTML code embeded editor
- within page settings - custom code
- within project settings - custom code
thanks again @bro-design
Scott_Mac
(Scott Mac)
4
this worked:
a:link {
color: black;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: black;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: black;
background-color: transparent;
text-decoration: none;
}
a:active {
color: black;
background-color: transparent;
text-decoration: none;
}
bro-design
(Dmitrii Tregubov)
5
This worked, but for all links on your page (it is not right). It will be more correct to assign a style only to the embed element.
It’s hard for me to explain it in English and easier to show by TeamViewer, if you still need it
Scott_Mac
(Scott Mac)
6
i think ive done it using your code