Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-07-2011, 03:31 AM   PM User | #1
runeveryday
Regular Coder

 
Join Date: Jul 2009
Posts: 152
Thanks: 8
Thanked 0 Times in 0 Posts
runeveryday can only hope to improve
why under IE7 the content doesn't wrap around the image?

See: When I click the
Code:
 more<<
(above the red poll part) why under IE7 the content doesn't wrap around the image?

Under Firefox and Chrome, it's ok.

How do I make the content wrap around the image when click the red
Quote:
more<<
text in IE7,8,9?

Last edited by runeveryday; 05-07-2011 at 12:06 PM..
runeveryday is offline   Reply With Quote
Old 05-07-2011, 09:16 AM   PM User | #2
abduraooft
Supreme Master coder!

 
abduraooft's Avatar
 
Join Date: Mar 2007
Location: N/A
Posts: 14,680
Thanks: 158
Thanked 2,182 Times in 2,169 Posts
abduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really nice
Your jquery script responsible for that more-less effect adds a zoom property to the div.pr_content. Removing that will make it okay.

Try
Code:
$('.moreteaser').click(function() {
 $('.pr_teaser').hide();
  $('.pr_content').toggle("slow");
  $(".pr_content").attr("zoom","")
  $('.moreteaser, .lessteaser').toggle();
});
in your /sites/all/themes/idccoupon/scripts.js?f
__________________
Quote:
The Dream is not what you see in sleep; Dream is the thing which doesn't let you sleep. --(Dr. APJ. Abdul Kalam)

Last edited by abduraooft; 05-07-2011 at 09:24 AM..
abduraooft is offline   Reply With Quote
Old 05-07-2011, 12:06 PM   PM User | #3
runeveryday
Regular Coder

 
Join Date: Jul 2009
Posts: 152
Thanks: 8
Thanked 0 Times in 0 Posts
runeveryday can only hope to improve
thanks for your reply, i have changed the scripts.js, but it still can't work under IE7,8,9
runeveryday is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:41 AM.


Advertisement
Log in to turn off these ads.