- Posts: 16
- Thank you received: 0
Howto make the intro images of a blog zooming?
-
hews
Inactive member - Topic Author
- New Member
Less
More
9 years 11 months ago - 9 years 11 months ago #43905
by hews
Replied by hews on topic Howto make the intro images of a blog zooming?
Hi Ivan,
sorry, my intro images do not seem to have that class by default.
Even at your demo page in the menu "blog" ...
demo.hotjoomlatemplates.com/index.php?template=rain
... the intro images do not zoom
You have chosen this picture at your demo page as the "intro image":
images/demo/blog_post1.jpg
Now I checked my template-css.css.
I found:
img.intro_image:hover {
transform: scale(1.4, 1.4) rotate(7deg);
-webkit-transform: scale(1.4, 1.4) rotate(7deg);
-moz-transform: scale(1.4, 1.4) rotate(7deg);
-o-transform: scale(1.4, 1.4) rotate(7deg);
-ms-transform: scale(1.4, 1.4) rotate(7deg);
}
I think this is what you mean.
But the intro images of articles in blog layout dont work
I hope you can help me.
Thank you, Hews
sorry, my intro images do not seem to have that class by default.
Even at your demo page in the menu "blog" ...
demo.hotjoomlatemplates.com/index.php?template=rain
... the intro images do not zoom
You have chosen this picture at your demo page as the "intro image":
images/demo/blog_post1.jpg
Now I checked my template-css.css.
I found:
img.intro_image:hover {
transform: scale(1.4, 1.4) rotate(7deg);
-webkit-transform: scale(1.4, 1.4) rotate(7deg);
-moz-transform: scale(1.4, 1.4) rotate(7deg);
-o-transform: scale(1.4, 1.4) rotate(7deg);
-ms-transform: scale(1.4, 1.4) rotate(7deg);
}
I think this is what you mean.
But the intro images of articles in blog layout dont work
I hope you can help me.
Thank you, Hews
Last edit: 9 years 11 months ago by hews.
Please Log in to join the conversation.
-
hews
Inactive member - Topic Author
- New Member
Less
More
- Posts: 16
- Thank you received: 0
9 years 11 months ago - 9 years 11 months ago #43908
by hews
Replied by hews on topic Howto make the intro images of a blog zooming?
Hi ivan,
Now I know a little bit more about the problem:
The intro images work with that class by default only with Menu Item Type "Featured Articles"
But they don't work with Menu Item Type "Blog" by default.
Can you help me to let the into images work with Menu Item Type "Blog", too.
Thank you.
Now I know a little bit more about the problem:
The intro images work with that class by default only with Menu Item Type "Featured Articles"
But they don't work with Menu Item Type "Blog" by default.
Can you help me to let the into images work with Menu Item Type "Blog", too.
Thank you.
Last edit: 9 years 11 months ago by hews.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
9 years 11 months ago #43912
by ivan.milic
Replied by ivan.milic on topic Howto make the intro images of a blog zooming?
copy default.php
form:
components\com_content\views\article\tmpl\
to:
templates\hot_rain\html\com_content\article\
(create this folder)
you will be able to find <img on one place, there add class="intro_image"
other solution:
img:hover {
transform: scale(1.4, 1.4) rotate(7deg);
-webkit-transform: scale(1.4, 1.4) rotate(7deg);
-moz-transform: scale(1.4, 1.4) rotate(7deg);
-o-transform: scale(1.4, 1.4) rotate(7deg);
-ms-transform: scale(1.4, 1.4) rotate(7deg);
}
would make every image on your site like that
form:
components\com_content\views\article\tmpl\
to:
templates\hot_rain\html\com_content\article\
(create this folder)
you will be able to find <img on one place, there add class="intro_image"
other solution:
img:hover {
transform: scale(1.4, 1.4) rotate(7deg);
-webkit-transform: scale(1.4, 1.4) rotate(7deg);
-moz-transform: scale(1.4, 1.4) rotate(7deg);
-o-transform: scale(1.4, 1.4) rotate(7deg);
-ms-transform: scale(1.4, 1.4) rotate(7deg);
}
would make every image on your site like that
Please Log in to join the conversation.
Time to create page: 0.121 seconds