Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Phoenixmusicol

    (@phoenixmusicol)

    or even just move the menu down

    Plugin Author codebycarter

    (@codebycarter)

    Hey Phoenixmusicol,

    Could you post a link to your WP site here or via email? (me at codebycarter.com) and what theme you’re using please, then if possible I’ll be able to fix this locally then send over or patch your code.

    Thanks!

    Thread Starter Phoenixmusicol

    (@phoenixmusicol)

    https://www.nubianrose.info

    I have removed the forum from the site

    https://nubianrose.info/forums/ there is the page link

    Cheers

    Plugin Author codebycarter

    (@codebycarter)

    Gotcha. Please open wp-bulletin-board/php/wpbb-index.php around line 189 find:

    <p class="wpbb-centered">

    Replace with:

    <p id="wpbb-index-links">

    Save and close.

    Then open wp-bulletin-board/css/wpbb-light-style.css and add at the bottom of the file below any content:

    p#wpbb-index-links {
        float:right;
        margin-bottom:10px;
    }

    You can remove the “margin-bottom:10px;” line if the space increases or if it is greater than you like. Try increasing or decreasing the value to your liking.

    You may also need to find (in the same file) if the menu is positioned next to the search bar:

    /* Search Bar */
    #wpbb-search {
    	float:right;
    }

    And replace with:

    /* Search Bar */
    #wpbb-search {
    	float:right;
    	clear:both;
    }

    But only if it doesn’t display itself above the search bar.

    Let me know if you need help with this, emailing me is better, again it’s me at codebycarter.com

    Thanks again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I know its been asked but couldnt fin the answer’ is closed to new replies.