1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

CSS code needed help!

Discussion in 'CSS' started by sitescripts, Sep 28, 2012.

  1. #1
    can any 1 help me make a rounded backround for my site http://resalemembership.com
    in return i will give you any product on the site. :)
     
    Solved! View solution.
    sitescripts, Sep 28, 2012 IP
  2. #2
    Hey,

    Do you mean, to have a border around the background and round the edges? If so, this may be the solution. :)

    CSS Code:

    body {
    border:1px solid #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    }
     
    Host Volt, Sep 29, 2012 IP
  3. sitescripts

    sitescripts Active Member

    Messages:
    600
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    88
    Digital Goods:
    10
    #3
    THanks! PM what product you want!
    PS can i do this with table borders too? if so how?
     
    sitescripts, Sep 29, 2012 IP
  4. Host Volt

    Host Volt Greenhorn

    Messages:
    29
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    15
    #4
    No problem! This is also possible with tables, in the same way! For example,

    HTML Code:

    <table class="table_border">
    .....
    </table>




    CSS Code:

    .table_border {
    border:1px solid #000;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    }


    If you want to keep the border you already have, it will still work. Just ignore the "border:1px solid #000;" :)
     
    Host Volt, Sep 30, 2012 IP
  5. moon_gfx77

    moon_gfx77 Active Member

    Messages:
    57
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #5
    page not design properly table style horizontal scroll even on chrome and Firefox and non optimize html will not make site SE friendly
     
    moon_gfx77, Sep 30, 2012 IP