Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Background and Text

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #44234
    socialbandit
    Member

    I know this is a trivial issue to some but this been kicking my butt the last couple of days . I need the Text to appear on top of the image but for some reason its seem to separate the container and the back ground image. my site is http://www.sumo-iq.com the css code im using so far is. i would really appreciate your help on this.

    html{

    min-height: 100%;

    background: #717171 url(‘../img/home-bg.jpg’) 100% 100% no-repeat;
    background: url(../img/iphone-hand.png) 100% 100% no-repeat ,#717171 url(‘../img/home-bg.jpg’) 100% 100% no-repeat;;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }

    body {

    body {
    min-height: 100%;
    font: 20px/1.4 ‘PT Sans’, sans-serif;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.66);

    background: transparent;

    }

    /*
    Text elements
    =================================================================*/

    .site-heading {
    margin-top: 100px;
    margin-bottom: 30px;

    font-size: 64px;
    line-height: 64px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);

    }

    #132387
    Merri
    Participant

    All you need:

    `body { background: transparent; }`

    Bootstrap sets body element background to white.

    #132388
    socialbandit
    Member

    @ Merri , i already have that code in my body tag still no dice

    #132389
    Merri
    Participant

    You have two consecutive rows of `body {` so that breaks any following CSS from working.

    #132390
    socialbandit
    Member

    Merri ! got it thanks a bunch next round of drinks is on me!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.