- Thank you received: 0
Styling Links
-
max@flexsystem.com
-
Topic Author
- New Member
-
Less
More
11 years 3 months ago #36612
by max@flexsystem.com
Styling Links was created by max@flexsystem.com
Want to configure color change when mouse over a link, I have applied the follow code on articles, but fail.
www.w3schools.com/css/tryit.asp?filename=trycss_link
www.w3schools.com/css/tryit.asp?filename=trycss_link
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 3 months ago #36614
by ivan.milic
Replied by ivan.milic on topic Styling Links
Use:
.bottom div.module h3:hover{
color:...
}
put that at bottom of tempalte_css.css
PLEASE USE SAME THREAD FOR RELATED POSTS, SO WE COULD CONNECT MEANING!
.bottom div.module h3:hover{
color:...
}
put that at bottom of tempalte_css.css
PLEASE USE SAME THREAD FOR RELATED POSTS, SO WE COULD CONNECT MEANING!
Please Log in to join the conversation.
-
max@flexsystem.com
-
Topic Author
- New Member
-
Less
More
- Thank you received: 0
11 years 3 months ago #36616
by max@flexsystem.com
Replied by max@flexsystem.com on topic Styling Links
I have tested but fail.
www.fesaconsol.com
I can clarify again. See the bottom of the site, you can see four key work, View Case Fact File.
When mouse over these words, want to change color to Red.
www.fesaconsol.com
I can clarify again. See the bottom of the site, you can see four key work, View Case Fact File.
When mouse over these words, want to change color to Red.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 2 months ago #36620
by ivan.milic
Replied by ivan.milic on topic Styling Links
Since I finally looked at your site: This can not work like you planed. Here is your HTML for first item:
<p style="text-align: center;"><a href="/index.php/component/content/article/9-feo-solu/211-by-view"><strong style="color: #07a4d1; text-align: center;"><span style="font-family: helvetica; font-size: 24pt;">View</span></strong></a></p>
instead:
<strong style="color: #07a4d1; text-align: center;"><span style="font-family: helvetica; font-size: 24pt;">View</span></strong>
you could use:
<span class="mylabel" >View</span>
then you could add at bottom of template_css.css:
.mylabel{
font-family: helvetica;
font-size: 24pt;
font-weight:bold;
color: #07a4d1;
text-align: center;
}
.mylabel:hover{
color: #FF0000;/*example value*/
}
<p style="text-align: center;"><a href="/index.php/component/content/article/9-feo-solu/211-by-view"><strong style="color: #07a4d1; text-align: center;"><span style="font-family: helvetica; font-size: 24pt;">View</span></strong></a></p>
instead:
<strong style="color: #07a4d1; text-align: center;"><span style="font-family: helvetica; font-size: 24pt;">View</span></strong>
you could use:
<span class="mylabel" >View</span>
then you could add at bottom of template_css.css:
.mylabel{
font-family: helvetica;
font-size: 24pt;
font-weight:bold;
color: #07a4d1;
text-align: center;
}
.mylabel:hover{
color: #FF0000;/*example value*/
}
Please Log in to join the conversation.
-
max@flexsystem.com
-
Topic Author
- New Member
-
Less
More
- Thank you received: 0
11 years 2 months ago #36627
by max@flexsystem.com
Replied by max@flexsystem.com on topic Styling Links
That's great. Thanks.
Please Log in to join the conversation.
Time to create page: 0.153 seconds