creamore
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackLast night I recieved an e-mail from user Laurentiu regarding this issue.
I’ve recently ran across your wordpress forums post about moving the menu in the piano black theme from right to left. I just did that on my site, but I won’t be making a new user on wordpress just to tell you that in a thread that you probably don’t watch any longer ?? So here’s how I did it (in the stylesheet CSS). If you want to see how it looks, my website is in my sig ??
#pngfix-left { background:url(img/menu_right.png) no-repeat right top; display:block; width:10px; height:60px; float:left; } #pngfix-right { background:url(img/menu_left.png) no-repeat left top; display:block; width:10px; height:60px; float:left; } ul.menu { float:left; background:url(img/menu_middle.png) repeat-x left top; font-size:11px; height:61px; margin:0; }
Oh, one more thing: if you want your menu bar to spawn the whole width of the theme instead of just floating on the left, use this line instead:
ul.menu { float:left; background:url(img/menu_middle.png) repeat-x left top; font-size:11px; height:61px; width:939px; margin:0; }
That’s what I did ??
Cheers,
LaurThis works as a charm… so upon his request, I am forwarding the solution here.
Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackI guess that I can live with that then… ??
Thank you for all your help!
Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackThat made the menu left adjusted, stretched the “menu_middle.png” to the right edge… so far so good… But it also removed the nice round edges of “menu_left.png” and “menu_right.png”.
Any chance that I can achieve the stretch and still keep my edges?
Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackThanks, I will try that…
Did not mean to come across as ungrateful. Sorry ’bout that.Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackI don’t know… I have not changed much in the original code at all.
The default position for the menu is right adjusted… All I want is for it to be centered. If I knew what those lines actually do, I would probably have figured this out by now.I am at a loss… There must be someone out there who knows this stuff.
Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackForum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackBumpibumpbump
Forum: Themes and Templates
In reply to: Center the top menu for theme Piano BlackBump!
Forum: Themes and Templates
In reply to: logo to top of monochrome themeUpload your logo under the /img/folder as logo.gif
Open up your header.php and edit as follows.
Find the lines:
<body> <div id="wrapper"> <div id="header"> <div id="header_top">
And change it to:
<body> <div id="wrapper"> <div id="header"> <div id="logo_image"> <h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/img/logo.gif" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" /></a></h1> </div> <div id="header_top">