How can I change the (powered & designed by) link at the footer its the same color as the footer menu items I would like it to be a different color and have a hover color
Hi there,
Please add this code in X > Theme Options > CSS:

.x-colophon.bottom .x-colophon-content a {
color: #ff0000;
}
Kindly change the value of the color in the code.
Here are some related links for further reading:
- Intro to CSS - https://goo.gl/mFuWQT
- How to get CSS selectors - https://goo.gl/BmoH39
- Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
Hope this helps.
Yes this worked… How about if I wanted it to have a different hover color.
Hello @rotation,
Thanks for updating the thread.
You can add following CSS under X > Theme Options > CSS:
.x-colophon.bottom .x-colophon-content a:hover {
color: #000;
}
Thanks.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.