Forums

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

Home Forums CSS Remove navigation background

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #148095
    dreynolds27
    Participant

    Hello,

    I need to know how can I remove the orange block that is behind my nagivation links at the top. I want to replace the orange block with a different image. The orange block is to square. The website is http://kataztrofeemusic.com/

    Thank you

    #148101
    jurotek
    Participant

    Remove that background with url in your html page

    <style type="text/css" media="all">
    
        #navigation-wrapper {
           background:url(http://i559.photobucket.com/albums/ss38/mostylescity/test1_zpse6d7267f.png)  ;
        width: 940px;
        height: 52px;
        position: relative;
        margin: 0 auto 20px;
        padding: 18px 20px 15px 20px;
    }
    </style>
    

    Change orange background in styles.css to something else

    #navigation-wrapper {
        background: #choose color;
    }
    
    #148104
    dreynolds27
    Participant

    Got it thank you!

    #148107
    jurotek
    Participant

    welcome

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