Results 1 to 6 of 6

Thread: Help needed with elastic CSS box using images for borders and corners

  1. #1
    Junior Registered
    Join Date
    Oct 2008
    Posts
    4

    Help needed with elastic CSS box using images for borders and corners

    I have been driving myself slowly mad for the last 2 days trying to find a way to design this elastic text box. It is made up of 9 transparent .pngs but I am having serious problems getting the side edge classes to set themselves the same height as the centre class which contains the text.

    There are currently different situations occurring in IE and FF with IE showing the edges and FF not giving them any height at all. Please excuse the code as it has been a long day of trial and lots of error.

    Current state <a href="http://www.keirmcguffogdesign.com/example.html">here</a>.

    HTML

    <div class="boxMiddleRow">
    <div class="boxLeftEdge"></div>
    <div class="boxCentre">
    <div id="lipsum">
    <p> Lorem ipsum ...........</p>
    </div>
    </div>
    <div class="boxRightEdge"></div>
    </div>

    CSS with /* left in so you might be able to see what I've been trying and what doesn't work.

    .boxMiddleRow {
    position: static;
    /*background-image: url(../images/content/textBoxEdgeLeft.png);
    background-repeat: repeat-y;*/
    width: 100%;
    display:block;
    /*padding:50px;*/
    }

    .boxLeftEdge {
    background-image: url(../images/content/textBoxEdgeLeft.png);
    background-repeat: repeat-y;
    position: static;
    display:block;
    float:left;
    width: 50px;
    height:100%;
    left: 0px;
    /*margin-right:-50px;*/
    /*padding-bottom:50px;*/
    }
    .boxCentre {
    background-image: url(../images/content/textBoxCentre.png);
    background-repeat: repeat;
    position:static;
    display:block;
    /*float:left;*/
    /*margin-left: 50px;
    margin-right:50px;*/
    margin-left:50px;
    margin-right:50px;

    }
    .boxRightEdge {
    background-image: url(../images/content/textBoxEdgeRight.png);
    background-repeat: repeat-y;
    position: static;
    display:block;
    float:right;
    margin-left:-50px;
    /*margin-top:-50px;*/
    width: 50px;
    height:100%;
    right: 0px;
    /*padding-top:50px;
    padding-bottom:50px;*/
    }

    Thanks for any help

  2. #2
    Senior Member agua's Avatar
    Join Date
    Sep 2005
    Location
    Pottsville, NSW
    Posts
    531
    I think you're getting too complicated - have a look here at this rounded corner box using graphics - I've used it many times on lots of sites
    I Do Website Design - but I am here to learn all about publishing

  3. #3
    Junior Registered
    Join Date
    Oct 2008
    Posts
    4
    Thanks for the reply but I'm after something a bit more complicated. The images I'm using are all .pngs with transparency settings on them. I want to be able to reuse it throughout a site setting different widths and having different amounts of text so I need a way of setting the middle edges heights to be the same as the centre (content) box.

    Thanks again

  4. #4
    Registered Mr. Pink's Avatar
    Join Date
    Sep 2008
    Location
    USA
    Posts
    147
    I am not sure, and right this second I don't have time to test, but try to put something into the DIV tags that are not showing height. Like this:

    <div class="boxLeftEdge"><IMG src="../images/content/textBoxEdgeLeft.png" border="0"></div>

    ...and...

    <div class="boxRightEdge"><IMG src="../images/content/textBoxEdgeLeft.png" border="0"></div>

    ...and also set the height and width (in the IMG tags) to whatever that image is.

  5. #5
    Quahog's Most Wanted Dan Schulz's Avatar
    Join Date
    Feb 2007
    Location
    Aurora, Illinois
    Posts
    91
    As I said on SitePoint, you should really look into deathshadow's Eight Corners Under One Roof.
    "Far away in cyberspace are my highest aspirations. I may not reach them, but I can envision their beauty, believe in them, and try to follow where they lead me."
    —Anonymous

  6. #6
    Junior Registered
    Join Date
    Oct 2008
    Posts
    4
    Hello again and thanks for all the replies. Sorry to keep bothering but all is not well with me yet. I've scrapped the transparent and am going with the "Eight Corners Under One Roof" that Dan suggested. However I've hit another brick wall. I've followed the tutorial to the T and have only jigged the heights to work with my image.

    Thanks again and if anyone can spot what's wrong a gold star is winging it's way to you.

    link

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •