How and where do I change the default color of the link inside the page?
See the link color inside the table on this page: https://dearjulius.com/pricing/
I want to change the color of the page link from the default option.
Hello !
That can be done using a CSS code as you can see here: .td-fix-index a {
color:red:
}
The codes must be inserted in here: https://www.screencast.com/t/G4qVwC6G
Thank you !
I set the code you provided.
Then I created a new page and put a link in it.
The code you provided is not working.
Check it out here: https://dearjulius.com/link-color-test/
Please suggest to me a new and workable code with the following link and hover color.
Link color:#002868
Hover color: #e8172d
The color will change and underline on hover
Hello,
Please try this code => https://www.screencast.com/t/ZGrPhXtg
.td-fix-index a {
color: #002868;
}
.td-fix-index a:hover{
color:#e8172d;
}
The code needs to be set in the Theme panel -> Custom code -> Custom CSS => https://www.screencast.com/t/fxetQe24ZHf
Thank you!
Excellent!
The link color code you provided is working great on a page created by tagDiv Composer.
This was what I needed.
But it’s not working on a page created by Gutenberg.
Check it out here: https://dearjulius.com/page/
Please suggest to me the link color and hover color code for the page above.
Link color:#002868
Hover color: #e8172d
Hello,
If you referring to this table, then you need to use this custom code CSS => https://www.screencast.com/t/nkUEfkN9mp
table tr td a {
color: #002868;
}
table tr td a:hover{
color:#e8172d;
}
The color for these links => https://www.screencast.com/t/yyg0I1VP7UO is the accent color from Theme Panel -> Theme Colors -> general theme colors.
Thank you!