css help

tonytony ModeratorAdministrator
my site www.fitnessblast.info is nearly done, however i want another box at the bottom for copyright info however i cant seem to do it (and no i didnt do the rest of the site someone else did that however hes gone travelling for 2 months)

i also want it to have the curved sides the stylesheet can be found under www.fitnessblast.info/stylesheet.css
my attempt is www.fitnessblast.info/indextest.html

thanks for any help

Comments

  • NuvoNuvo Forum Leader VPS - Virtual Prince of the Server
    I wrote a small tutorial article for Tutorial Dash about this effect.
    Since you're using floats, you need to tell the browser (in CSS) that the footer element should be under everything befure it.
    You can easily do this by setting the clear attribute of it's CSS to clear: both;.
    That'll put it under both the floated columns for you:
    .footer {
    clear: both;
    }
    

    As for rounded corners, it's either a case of doing what you have for the content and navigation columns, or creating an image that fits the footer and then using that on the div:
    .footer {
    clear: both;
    background: url('images/footer.png');
    /*height:  image height;
    padding: required padding to make it look good;*/
    }
    
    PHP, CSS, XHTML, Delphi, Ruby on Rails & more.
    Current project: CMS Object.
    Most recent change: Theme support is up and running... So long as I use my theme resource loaders instead of that in the Rails plug-in.
    Release date: NEVER!!!
  • ryanryan Beginner Link Clerk
    sites looking good well done, how long did it take you
Sign In or Register to comment.