appelby1010
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Why isn't this div showing?Cheers
Forum: Themes and Templates
In reply to: Why isn't this div showing?Thank you very much. I really appreciate your help. I’ve been a good few hours trying to get this sorted. I’ll know now in future. Thanks again
Forum: Themes and Templates
In reply to: Why isn't this div showing?Hi, I put it outside the php if/else statement and the red box appears but it is below the header. Please have a look at the website now. I want it to appear to the right of the header. The php code is now:
<div id="top"> <?php $logotype = get_option('templatesquare_logo_type'); $logoimage = get_option('templatesquare_logo_image'); $sitename = get_option('templatesquare_site_name'); $tagline = get_option('templatesquare_tagline'); if($logoimage == ""){ $logoimage = get_bloginfo('template_url') . "/images/logo.png"; } ?> <?php if($logotype == 'textlogo'){ ?> <div id="logo"> <?php if($sitename=="" && $tagline==""){?> <h1><a href="<?php echo get_option('home'); ?>/" title="<?php _e('Click for Home','templatesquare'); ?>"><?php bloginfo('name'); ?></a></h1> <span class="desc"><?php bloginfo('description'); ?></span> <?php }else{ ?> <h1><a href="<?php echo get_option('home'); ?>/" title="<?php _e('Click for Home','templatesquare'); ?>"><?php echo $sitename; ?></a></h1> <span class="desc"><?php echo $tagline; ?></span> <?php }?> </div><!-- end #logo --> <?php } else { ?> <div id="logo"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo $logoimage;?>" alt="" /></a></div><!-- end #logo --> <?php }?> <div id="media"><p>test</p></div> </div><!-- end top -->
OK, thank you for getting back to me. I appreciate it. I’ll speak with the client and see what he wants to do.
Forum: Fixing WordPress
In reply to: Working alternatives to Wordbook?Thank you. I tried the facebook one but it seems to create a new Facebook application fan page and doesn’t seem to be able to connect to an existing Facebook page. If anyone has any other alternatives then I would appreciate it.
Forum: Fixing WordPress
In reply to: 301 redirect…first time…please helpbump
Forum: Themes and Templates
In reply to: Having a set image instead of a gravatar??You could, however, just make your flower image the default gravatar if someone isn’t using one.
How would I do that? The other option would be to remove the avatar altogether and replace it with a div. Inside the div would be a set image of a flower. Any ideas how to do that?
Forum: Themes and Templates
In reply to: Having a set image instead of a gravatar??Sorry. The link is here.
But wouldn’t that gravatar just be for one person? Doesn’t each person have their own gravatar?
Thanks
Forum: Fixing WordPress
In reply to: Looking for a comment type pluginbump
Forum: Fixing WordPress
In reply to: Birthday Calendar…is this possible?bump
Forum: Fixing WordPress
In reply to: Birthday Calendar…is this possible?No problem. Thanks for your reply anyway. I’ll wait and hope. Hope you get a response as well.
Forum: Fixing WordPress
In reply to: Birthday Calendar…is this possible?bump
Forum: Fixing WordPress
In reply to: Directory for website….some questionsbump
Forum: Fixing WordPress
In reply to: 500 Internal Server Error…please helpThanks Bryan for replying. I fixed it. For some reason I had the following code in my .htaccess file:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wordpress/index.php [L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: 500 Internal Server Error…please helpI have fixed it. There was a problem in the .htaccess file. It has the incorrect code. Everything seems to be ok now. New code is:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress