lenny86
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Different footer for each WP PageGet it working thanks to lelandf!
So the file which had to be modified was page.php and the code:
<?php if (is_page('your-page-slug')) { include (TEMPLATEPATH . '/footer2.php'); } else { get_footer(); } ?>
Yey!
Forum: Fixing WordPress
In reply to: Different footer for each WP PageI don’t think it’s this problem as I have made this theme by myself from scratch.
Forum: Themes and Templates
In reply to: Logo alignmentAbsolute file path work like a charm!
Thanks!!
Forum: Themes and Templates
In reply to: Logo alignmentHi,
I have placed my div like that:
<nav class="ppoz-nav clearfix"> <strong><a><img src="../images/nav.png" width="300" height="83" alt="logo" align="left" /></a></strong> <?php echo theme_get_menu(array( 'source' => theme_get_option('theme_menu_source'), 'depth' => theme_get_option('theme_menu_depth'), 'menu' => 'primary-menu', 'class' => 'ppoz-hmenu'
And I can see the container that should hold the image but the image itself won’t show up on the page. I have tried different paths to the image and still nothing.
Any advise?
OK,
found it:
+ ‘Image ‘ +in /gallery-plugin.php
Forum: Themes and Templates
In reply to: Logo alignmentHi,
I have found a way to resolve this with a static page:
[Way too much code deleted – please use code buttons per the forum guidelines]any idea on how to include clickable logo within that div?
Forum: Themes and Templates
In reply to: Logo alignmentHi,
I have done it and it looks exactly as I wanted to but now anything I will place inside that div is not clickable. I have placed there a image and a word as a hyperlink and I was not able to click on any of them.
Here is the CSS and HTML
.ppoz-left
{
float: left;
margin:auto auto 20px 250px;
padding:0 10px 0 100px;
}<div class='ppoz-left'><a href="home.html"><img src="images/nav.png" width="300" height="83">link</a></div>
[Please post markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]any idea what am I doing wrong?
Forum: Themes and Templates
In reply to: Logo alignmentThanks LastForOne!!
I’ll try it tonight and let you know if I handled it!
Forum: Themes and Templates
In reply to: Logo alignmentI’m sorry I didn’t make myself clear.
I do have a wordpress site at following address: https://ppoz.net78.net/WP/
But I made it static so I wouldn’t get the straight answer on how to edit WP files and I would have to think about it a little.As you can see at the WordPress site there is a logo as CSS background. I understand that I have to edit the header file in the similar way I have done with static page but how should I edit CSS to align it as it is right now on WP page?
Forum: Fixing WordPress
In reply to: Logo inside menu barHi,
I have tried this solution but it is not exactly what I want. Is there a possibility to split that menu into two divs for example or somehow so one part would hold the image as hyperlink and second would be that menu?
Forum: Fixing WordPress
In reply to: Logo inside menu barThanks!
I will try to edit the header with that CSS solution. I hope it will work