MiniDudeMD
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu on top of pageI somewhat figured it out, i found WP Symposium Toolbar Plugin. which pretty much does what i need 🙂
Forum: Fixing WordPress
In reply to: Menu on top of pagebump :O?
Forum: Fixing WordPress
In reply to: Menu on top of pageX 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>Forum: Fixing WordPress
In reply to: Menu on top of pageOkey 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? 😛
Forum: Fixing WordPress
In reply to: Menu on top of pageNo idea, but now the entire website is down..
Forum: Fixing WordPress
In reply to: Menu on top of pageI 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