Forums

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

Home Forums CSS CSS Stylesheet: opacity

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

    I’m building my website in wordpress. I want to transparent the background for 50%. When I type down the code in css, it’s making the background fully transparent. What am i doing wrong?

    This is the code:

    #navi {
    float: left;
    background: #111111 opacity: 0.5;
    width: 550px;
    height: 40px;
    font-family: Menlo;
    font-size: 1.2em;
    padding: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;

    #97024
    wolfcry911
    Participant

    It’s not giving you a background at all – because it’s throwing an error (a simple validation would show you). The opacity property should be separate from the background (ie place a semi-colon after background value).

    Note however, that using opacity will affect not only the background but everything in #navi as well (text, etc). To accomplish your goal use an rgba or hsla value for the background property.

    #97030
    Thomasmorel
    Member

    Thx. Yeah, i know, but i don’t know where to put the image. I’m not really familiar with php

    #97037
    chrisburton
    Participant

    PHP?

    background: rgba(17,17,17,.5) url(path/to/image.png) center no-repeat;

    edit: My fault. I misread the above conversation.

    #97067
    Anonymous
    Inactive

    If you want the image stretched to fit the resolution of the browser, I suggest taking a look at: http://srobbin.com/jquery-plugins/jquery-backstretch/

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