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.

Need a Wordpress fix

Discussion in 'HTML & Website Design' started by BooZzZ, Sep 25, 2008.

  1. #1
    Hey,

    Not sure if this is the right section to post it in, but whatever:


    I just recently opened my Call of Duty 5 wordpress blog, http://tinyurl.com/4ykpe9. However, if you view the site in FireFox / Chrome / Everything that's not IE you see that the buttons 'System Requirements' 'Home' , 'Release Date' etc have no border around them (they should have) and it's very hard to click them.. you only got like 1pixel to make them open. Perhaps you even see them all messed up at first, but then you just got to refresh (very strange problem).

    Anyway, is there someone who can think he / she can fix this for a small fee?
     
    If someone posts a solution, use the "Best Answer" link in their post to pick it as the best answer.
    BooZzZ, Sep 25, 2008 IP
  2. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #2
    Seems like <div id="nvbar"> is causing the problems... I removed <div id="nvbar"> and its </div> and your buttons work in FF. If you go with that... you will need to adjust your header background image and your header height.

    Or better yet... remove all styles for #nvbar except for padding-left:35px
     
    scoopy82, Sep 25, 2008 Set Best Answer IP
    1 person likes this.
  3. nfd2005

    nfd2005 Well-Known Member

    Messages:
    295
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    130
    #3
    One solution may be to add a z-index to your #nvbar.

    
    #nvbar {
    	list-style: none;
    	margin: 0px;
    	position: relative;
    	float:left;
    	top: 26px;
    	padding-left: 35px;
    	bottom: 0px;
    z-index:1000;
    }
    
    Code (markup):
     
    nfd2005, Sep 25, 2008 Set Best Answer IP
  4. SEOpaw

    SEOpaw Peon

    Messages:
    437
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #4
    
    #nvbar {
            color:#000000;
    	list-style: none;
    	margin: 0px;
    	position: relative;
    	float:left;
    	top: 26px;
    	padding-left: 35px;
    	bottom: 0px;
    z-index:1000;
    }
    Code (markup):
     
    SEOpaw, Sep 25, 2008 Set Best Answer IP
    1 person likes this.
  5. nfd2005

    nfd2005 Well-Known Member

    Messages:
    295
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    130
    #5
    What exactly does this do different?
     
    nfd2005, Sep 25, 2008 Set Best Answer IP
    1 person likes this.
  6. shahilroyhere

    shahilroyhere Well-Known Member

    Messages:
    189
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    130
    #6
    I think you can try just by adding this:

    #nbar li {
    display: block;
    }
     
    1 person likes this.
  7. BooZzZ

    BooZzZ Guest

    Best Answers:
    0
    #7
    Thanks for all your answers, I don't have FTP acces here at school but I'll check it out when I'm home.

    Repped all of you :).
     
    BooZzZ, Sep 26, 2008 Set Best Answer IP