Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter MiniDudeMD

    (@minidudemd)

    I somewhat figured it out, i found WP Symposium Toolbar Plugin. which pretty much does what i need 🙂

    Thread Starter MiniDudeMD

    (@minidudemd)

    bump :O?

    Thread Starter MiniDudeMD

    (@minidudemd)

    X Theme is the one i am using, it has its own custom css field, so i dont need to edit any files 🙂

    I managed to get almost what i wanted using the code below, but i want it to be a single image line of my choosing instead of the black bars 🙂

    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body  {
        background-image: url("http://www.sexologi.no/wp-content/uploads/TBBG.jpg");
    
    }
    ul#menu {
        padding: 0;
    }
    
    ul#menu li {
        display: inline;
    }
    
    ul#menu li a {
        background-color: black;
        color: white;
        padding: 5px 20px;
        text-decoration: none;
        border-radius: 4px 4px 0 0;
    }
    
    ul#menu li a:hover {
        background-color: red;
    
    }
    </style>
    </head>
    <body>
    
    <ul id="menu">
    
    <li><img src="http://www.sexologi.no/wp-content/uploads/Untitled.png">  
      </li>
    <li><a href="/css/default.asp">NFKS</a></li>
    <li><a href="/css/default.asp">CSS</a></li>
    <li><a href="/js/default.asp">JavaScript</a></li>
    <li><a href="/php/default.asp">PHP</a></li>
    </body>
    </html>
    Thread Starter MiniDudeMD

    (@minidudemd)

    Okey i managed to place the old function.php and its back up. not placing anything in that one anymore lol.

    Any idea where i could place it without it making my website go crazy? 😛

    Thread Starter MiniDudeMD

    (@minidudemd)

    No idea, but now the entire website is down..

    Thread Starter MiniDudeMD

    (@minidudemd)

    I added
    function theme_setup() {

    register_nav_menus(array(
    ‘top-right’ => __(‘Header Top right Menu’, ‘theme’),
    ));
    add_action(‘after_setup_theme’, ‘theme_setup’);

    now i cant get back into the dashboard :O

Viewing 6 replies - 1 through 6 (of 6 total)