enable link as hand not as arrow

October 2015 Joomla Template
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Wed Mar 09, 2016 2:36 pm
Reply with quote
Report this post
hello the links appear as arrow on mouse over, i want them to turn to a hand symbol on active links.

thank you
User avatar
Junior Boarder

teitbite
Sat Mar 12, 2016 4:22 pm
Reply with quote
Report this post
Hi

Try add this to css:

Code: Select all
a {
    cursor: pointer;
}
User avatar
Moderator

GK User
Tue Mar 15, 2016 10:23 am
Reply with quote
Report this post
teitbite wrote:Hi

Try add this to css:

Code: Select all
a {
    cursor: pointer;
}


thank you!
User avatar
Junior Boarder

teitbite
Mon Mar 21, 2016 11:23 am
Reply with quote
Report this post
Hi
Glad I could help.
---
If You were satisfied with our support please let other users know on Twitter: http://twitter.com/gavickpro or Facebook: http://www.facebook.com/gavickpro
User avatar
Moderator

GK User
Mon May 16, 2016 10:20 am
Reply with quote
Report this post
it did not work although i have added the css code to the override css when i click inspect code there is this line

body * {
cursor: default;
}

where can I locate this and change it?

p.s.
i have added also this
body * {
cursor: pointer;
}

in the override.css file but it does not change anything

thank you
User avatar
Junior Boarder

teitbite
Tue May 17, 2016 10:58 am
Reply with quote
Report this post
Hi

Your code is wrong. With this code everything when cursor is over should change it to hand symbol. But if it does not do that than I think override.css is not activated in template settings or there are errors in it. Please tell me the url to Your site.
User avatar
Moderator

GK User
Fri May 27, 2016 8:07 pm
Reply with quote
Report this post
teitbite wrote:Hi

Your code is wrong. With this code everything when cursor is over should change it to hand symbol. But if it does not do that than I think override.css is not activated in template settings or there are errors in it. Please tell me the url to Your site.


well the override.css is and was enabled I had to add a lot of css for every line to define cursor as pointer to get it to work. i will send you pm with the site url...
User avatar
Junior Boarder

teitbite
Mon May 30, 2016 10:05 am
Reply with quote
Report this post
Hi

All code You need is this to override "body *" selector:

Code: Select all
body a {
    cursor: pointer !important;
}
User avatar
Moderator


cron