Results 1 to 2 of 2

Thread: download to project?

  1. #1
    Join Date
    Dec 2007
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question download to project?

    I have this menu http://www.dynamicdrive.com/style/cs...dd-color-tabs/ and I created another bar like the one below the tabs of the menu. I wanted to add stripes to this other bar and I found the stripes I want from this site http://www.stripemania.com/ I downloaded the images of the stripes from the site but how do I add it to my project on visual web '05 to the bar I want the stripes to be the background of?

  2. #2
    Join Date
    Dec 2007
    Posts
    21
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi,

    You would code it in the css for that line. I believe it's this


    Code:
    #ddcolortabsline{
    clear: both;
    padding: 0;
    width: 100%;
    height: 8px;
    line-height: 8px;
    background: #678b3f;
    border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
    }

    So where it says background: and the color, you'd do something like

    Code:
    background: transparent url(image.name) repeat-x;
    Ruth

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •