Inserting my own text in the footer.
-
Sorry for all the question.
When I insert text in the footer (I remove all the text that is currently in there) And I add my own text using ‘<P>’ ‘</P>’ It will only put the text in a small part of the footer. I can’t find where it is defined to only use that part, I want to use the entire length of the footer.
<?php
/**
* The template for displaying the footer.
*
* Closes the <div> for #content, #content-main and #container, <body> and <html> tags.
*
* @package WordPress
* @subpackage Graphene
* @since Graphene 1.0
*/
global $graphene_settings;
?>
</div><!-- #content-main -->
<?php
/* Sidebar 1 on the right side? */
if ( in_array(graphene_column_mode(), array('two-col-left', 'three-col-left')) ){
get_sidebar();
}
/* Sidebar 2 on the right side? */
if ( in_array(graphene_column_mode(), array('three-col-left', 'three-col-center')) ){
get_sidebar('two');
}
?>
</div><!-- #content -->
<?php /* Get the footer widget area */ ?>
<?php get_template_part('sidebar', 'footer'); ?>
<?php do_action('graphene_before_footer'); ?>
<div id="footer">
<?php if (!$graphene_settings['hide_copyright']) : ?>
<div id="copyright" <?php if (!$graphene_settings['show_cc'] && !is_rtl()) {
echo 'style="background:none;padding-left:20px;"';
} elseif (!$graphene_settings['show_cc'] && is_rtl()) {
echo 'style="background:none;padding-right:20px;"';
} ?>>
<?php if ($graphene_settings['copy_text'] == '') : ?>
<p>© <?php echo date("Y") ?> <a href="<?php bloginfo('url'); ?>/" title="<?php bloginfo('description'); ?>"><?php bloginfo('name'); ?></a>. All Rights Reserved.</p>
<p>Friends: <A HREF="http://www.dondiablo.com">Don Diablo</A>, <A HREF="http://www.vato.nl">Vato Gonzalez</A>, <A HREF="http://www.harderbloggerfaster.com/">Harder Blogger Faster</A>, <A HREF="http://www.djmischaa.nl">DJ Mischaa</A>, <A HREF="http://www.djniek.nl">DJ Niek</A>.</p>
<?php else : ?>
<?php echo stripslashes($graphene_settings['copy_text']); ?>
<?php endif; ?>
<?php do_action('graphene_copyright'); ?>
</div>
<?php endif; ?>
<?php do_action('graphene_w3c'); ?>
</div>
<?php do_action('graphene_developer'); ?>
</div>
</div><!-- #footer -->
<?php do_action('graphene_after_footer'); ?>
</div><!-- #container -->
<?php if (!get_theme_mod('background_image', false) && !get_theme_mod('background_color', false)) : ?>
</div><!-- .bg-gradient -->
<?php endif; ?>I’ve added this part:
<?php if ($graphene_settings['copy_text'] == '') : ?>
<p>© <?php echo date("Y") ?> <a href="<?php bloginfo('url'); ?>/" title="<?php bloginfo('description'); ?>"><?php bloginfo('name'); ?></a>. All Rights Reserved.</p>
<p>Friends: <A HREF="http://www.dondiablo.com">Don Diablo</A>, <A HREF="http://www.vato.nl">Vato Gonzalez</A>, <A HREF="http://www.harderbloggerfaster.com/">Harder Blogger Faster</A>, <A HREF="http://www.djmischaa.nl">DJ Mischaa</A>, <A HREF="http://www.djniek.nl">DJ Niek</A>.</p>
<?php else : ?>Does anybody know what I am doing wrong?
Admin
Add to your Custom CSS:
#copyright {
width: 920px;
}
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
