Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #55.0K
~587 People Reached
Favorite Forums

3 Posted Topics

Member Avatar for Member #891530

Hi. As I understand you want the left and right divs be the same height as the center div, right? And the left and right divs have the same height (static). Only the center div changes its height. I can suggest you using jquery methode. First of all be sure …

Member Avatar for Anahit
0
225
Member Avatar for george61

Hi. I suggest using jquery for rounding the corners. You just include it in your <head> part. Here is the corner.js. <script type="text/javascript" src="jquery.corner.js"></script> <script type="text/javascript"> $('.images').corner(); </script> I think it will work.

Member Avatar for Anahit
0
223
Member Avatar for EPierre

You can divide the whole thing into three ports: the left one, the image and the right one. <div id="left">Add your costum text here</div> <div id="right"> <div id="one"><img src="your image"/> </div> <div id="two">And some more text </div> </div> the style.css #left{ width:33%; float:left; margin-right:1%;} #right{ width:66%; float:right;} #one{ width:49%; float:left;} …

Member Avatar for tinymark
0
139

The End.