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.

Problem with css? how to change the code? | for this

Discussion in 'CSS' started by ebangla, May 26, 2006.

  1. #1
    I have problem with the css
    I want to change the color of the red marked thing , you will find the picture here............http://img.photobucket.com/albums/v199/enciel/red.jpg

    Any suggestion which part of the css I need to edit? What should put in my css so that the color of | thing will change??

    Any advice will be greatly appreciated:confused:
     
    ebangla, May 26, 2006 IP
  2. mjewel

    mjewel Prominent Member

    Messages:
    6,693
    Likes Received:
    514
    Best Answers:
    0
    Trophy Points:
    310
    #2
    There is no way to tell without seeing your site (code) and the css file. You could wrap the menu area in a div and specify a class with the color you want.
     
    mjewel, May 26, 2006 IP
  3. ebangla

    ebangla Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Should I add the code here? Will that help you to help me?:confused:
     
    ebangla, May 26, 2006 IP
  4. mjewel

    mjewel Prominent Member

    Messages:
    6,693
    Likes Received:
    514
    Best Answers:
    0
    Trophy Points:
    310
    #4
    Post the url of the site.

    My guess is that you are going to need to modify the code and it that it won't be a matter of just changing the css file.
     
    mjewel, May 26, 2006 IP
  5. ebangla

    ebangla Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    ebangla, May 26, 2006 IP
  6. mjewel

    mjewel Prominent Member

    Messages:
    6,693
    Likes Received:
    514
    Best Answers:
    0
    Trophy Points:
    310
    #6
    That looks different than the pic you posted, but you want to edit the code of the page to add a class to the div that surrounds the code you are trying to change:

    Something like:

    <div align="center" class="menubar">
    <a href="http://z3.invisionfree.com/Blue_Whale_Forum/index.php?act=Stats&amp;CODE=leaders">The moderating team</a> |
    <a href="http://z3.invisionfree.com/Blue_Whale_Forum/index.php?act=Search&amp;CODE=getactive">Today's active topics</a> |
    <a href="http://z3.invisionfree.com/Blue_Whale_Forum/index.php?act=Stats">Today's top 10 posters</a> |
    <a href="http://z3.invisionfree.com/Blue_Whale_Forum/index.php?act=Members&amp;max_results=10&amp;sort_key=posts&amp;sort_order=desc">Overall top 10 posters</a>
    </div>

    You can name the class anything you want as long as it isn't already being used in your css file.

    Then you need to add the class to your css file:

    .menubar {
    color:#FF0000;
    }
     
    mjewel, May 26, 2006 IP