Wordpress theme issue with WP-United

Discussion in 'HTML & Website Design' started by amei, May 20, 2009.

  1. #1
    I am having a problem with WP-United and my wordpress blog. If you aren't familiar with WP-United its used to integrate wordpress and phpbb.

    Please take a look at it here. http://ameipress.com/discussion/blog.php - this is the wordpress blog. It is inside of the phpbb theme. See how the menu on the header is jumbled up? Can't get it corrected.

    If you look at the other pages: http://ameipress.com/discussion you will see that the menu on all the other phpbb pages are fine. The issue is only when the wordpress theme is pulled into phpbb's page template.

    If i use say the default wordpress theme, the menus are fine. Any ideas or suggestions how I can resolve the issue? I had someone else do the integration for me and they can't figure it out. Obviously I can't leave it that way and I really like the theme i'm using. Any help is appreciated.
     
    amei, May 20, 2009 IP
  2. Spawny

    Spawny Well-Known Member

    Messages:
    252
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    110
    #2
    here's how to fix it.. open your current phpBB theme stylesheet or http://ameipress.com/discussion/styles/4poziomSEO/theme/stylesheet.css then find this code
    
      #menu {
       width: 700px;
       height: 30px;
       margin-left:20px;
    }
    
     #menu ul li {
       display: inline
     }
     
     #menu ul li a {
      float: left;
      padding: 10px 5px;
      color: #fff;
      text-decoration: none;
      font: 12px Tahoma, Arial, Helvetica, sans-serif;
      line-height: 18px;
    }
    
    
    Code (markup):
    replace with

    
      #menubb {
       width: 700px;
       height: 30px;
       margin-left:20px;
    }
    
     #menubb ul li {
       display: inline
     }
     
     #menubb ul li a {
      float: left;
      padding: 10px 5px;
      color: #fff;
      text-decoration: none;
      font: 12px Tahoma, Arial, Helvetica, sans-serif;
      line-height: 18px;
    }
    
    
    Code (markup):
    then proceed now on your phpBB theme/template folder open overall_header.html find this code
    
      <div id="menu">
     
    
    Code (markup):
    replace with

    
      <div id="menubb">
     
    
    Code (markup):
    make sure to purge your cache after your done with the changes.. and thats it :D
     
    Spawny, May 20, 2009 IP
  3. amei

    amei Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    That fixed it. Thanks! You saved me a bunch of time.
     
    amei, May 20, 2009 IP
  4. djuicePK

    djuicePK Peon

    Messages:
    77
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Good thing to help other. Nice to see my link..
     
    djuicePK, May 26, 2009 IP