- Posts: 9
- Thank you received: 0
disable rotating images
-
cali
Inactive member - Topic Author
- New Member
Less
More
11 years 7 months ago #29092
by cali
disable rotating images was created by cali
Hi, pleas i need help.
I'm working on my site. I want to change the pictures on fronpage. Bike instead watch looks very bad. (See photo.
You can set fronpage so,images that were not rotating or pictures would be bigger?
If not, how best to adapt to the bike?
Thank you.
I'm working on my site. I want to change the pictures on fronpage. Bike instead watch looks very bad. (See photo.
You can set fronpage so,images that were not rotating or pictures would be bigger?
If not, how best to adapt to the bike?
Thank you.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 7 months ago #29102
by ivan.milic
Replied by ivan.milic on topic disable rotating images
send link please
Please Log in to join the conversation.
-
cali
Inactive member - Topic Author
- New Member
Less
More
- Posts: 9
- Thank you received: 0
11 years 7 months ago #29201
by cali
Replied by cali on topic disable rotating images
excuse me, while I run on localhost. I will do over the weekend upload. Then send link. Thank you.
Please Log in to join the conversation.
-
cali
Inactive member - Topic Author
- New Member
Less
More
- Posts: 9
- Thank you received: 0
11 years 7 months ago #29273
by cali
Replied by cali on topic disable rotating images
Please Log in to join the conversation.
-
cali
Inactive member - Topic Author
- New Member
Less
More
- Posts: 9
- Thank you received: 0
11 years 7 months ago #29274
by cali
Replied by cali on topic disable rotating images
Please look wild ride item on frontpage.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 7 months ago #29285
by ivan.milic
Replied by ivan.milic on topic disable rotating images
You have to optimize your images to have dimensions so they fit the layout.
You have this in template_css.css:
.rotated_image img {
width: 210px !important;
max-width: 210px !important;
transform: rotate(-60deg);
-moz-transform: rotate(-60deg);
-webkit-transform: rotate(-60deg);
position: relative;
top: -108px;
left: -70px;
}
and
.normal_image img {
position: relative;
top: -175px;
display: none;
}
.normal_image is class of image container when expanded and .rotated_image when collapsed.
You see bot are shifted vertically top: -108px; and top: -175px; . You can also modify css but certainly modifying images would be easier task
You have this in template_css.css:
.rotated_image img {
width: 210px !important;
max-width: 210px !important;
transform: rotate(-60deg);
-moz-transform: rotate(-60deg);
-webkit-transform: rotate(-60deg);
position: relative;
top: -108px;
left: -70px;
}
and
.normal_image img {
position: relative;
top: -175px;
display: none;
}
.normal_image is class of image container when expanded and .rotated_image when collapsed.
You see bot are shifted vertically top: -108px; and top: -175px; . You can also modify css but certainly modifying images would be easier task
Please Log in to join the conversation.
Time to create page: 0.217 seconds