Hi Ciaran,
I like to change the Hover color (if possible with a transparancy %) of the mod_j51news module.
If you have a css I can put it in the custom.css in the PianoForte temlate.
See the attachment for details.
Thanks a lot,
Regards, Milian
https://www.boekhandelpraamstra.nl/ja30/
The 5 book coverrs in the center page.
I want to change the the Hover color (with a transparance value).
Thanks,
Milian
The 5 book coverrs in the center page.
I want to change the the Hover color (with a transparance value).
Thanks,
Milian
- more than a month ago
- Commercial Templates
- # 1
Thank you
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
(edit to taste)
Ciaran
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
(edit to taste)
.j51news .hover-overlay {
background-color: #aaa;
}
.newsitem:hover .hover-overlay {
opacity: .7;
}Ciaran
- more than a month ago
- Commercial Templates
- # 3
Is it possible for the the picture to zoom in (Get bigger) on hover rather than zoom out (Get Smaller)? and can we control the amount of zoom?
- more than a month ago
- Commercial Templates
- # 4
Hi Patrick
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Edit to taste
Ciaran
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Edit to taste
.j51news .newsitem img {
transition: all ease .3s;
}
.j51news .newsitem:hover img {
transform: scale(120%);
}Ciaran
- more than a month ago
- Commercial Templates
- # 5
Hi Ciaran,
It seems that the transform: scale (120%) only works in Firefox.
Not in Chrome and Edge (Chromium).
Do you have a workaround for it also?
Regards,
Milian
It seems that the transform: scale (120%) only works in Firefox.
Not in Chrome and Edge (Chromium).
Do you have a workaround for it also?
Regards,
Milian
- more than a month ago
- Commercial Templates
- # 6
Hi Milian
Chrome sometimes has an issue when using pertentages on scale. To amend try replacing the suggested CSS with the following...
Ciaran
Chrome sometimes has an issue when using pertentages on scale. To amend try replacing the suggested CSS with the following...
.j51news .newsitem img {
transition: all ease .3s;
}
.j51news .newsitem:hover img {
transform: scale(1.2);
}Ciaran
- more than a month ago
- Commercial Templates
- # 7
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »