Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Remove letters WordPress

  • SOLVED

Hi,

I need help to remove the S and I here - http://www.thailandliving.se/thailand-bilder/
next to the facebook button.

Thanks
Charlotte

Answers (6)

2011-12-05

Nilesh shiragave answers:

Open Style.css file of your theme you can find that file at
http://www.thailandliving.se/wp-content/themes/charlotteNew/style.css

and search for following lines of code

#footer {background:#fff url(images/maintop.gif) left top no-repeat; margin-top:10px; width:982px; height:30px;}


replace that code with following lines of code


#footer {background:#fff url(images/maintop.gif) left top no-repeat; margin-top:10px; width:982px; height:30px; display:block; clear:both;}


Which will move your copyright at the bottom of your page.


And for the "S" you have to edit sidebar.php open sidebar.php and delete that "S" from that php file.


Charlotte Raboff comments:

Thanks!

| is gone now but I can´t find the S in either sidebar1, sidebar2, sidebartop or sidebarbottom.....


Nilesh shiragave comments:

check footer.php i think it is inside that file.

or inside sidebarbottom.

2011-12-05

Jerson Baguio answers:

Hi charlotte,

replace your single.php with this


<?php get_header(); ?>

<div id="blog">
<div class="entry">
<div style="margin-left:10px">

</div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">

<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>

<?php the_content('Read more &raquo;'); ?>

<br /><br />
<div class="navigation navigationsingle">
<div class="alignleft"><img src="<?php bloginfo('template_directory'); ?>/images/arrow-left.jpg" alt="" /> <?php previous_post_link('%link') ?></div>
<div class="alignright"><?php next_post_link('%link') ?> <img src="<?php bloginfo('template_directory'); ?>/images/arrow-right.jpg" alt="" /></div>
<br clear="all" />
</div>
<?php comments_template(); ?>
</div><!--post-->

<?php endwhile; ?>
<?php else : ?>
<div class="post">
<h2 class="center search">Search could not find anything!</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
</div>
<?php endif; ?>
</div><!--entry-->

<div id="blog_bottom"></div>
</div><!--blog-->

<div id="sidebars">
<div class="side" style="width:330px;border-bottom:8px solid #999;">
<?php include (TEMPLATEPATH . '/sidebarTop.php'); ?>
</div><!--topsidebar-->

<div class="side">
<?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
</div>
<div class="side" style="width:470px;border-bottom:8px solid #999;float:right;">
<?php include (TEMPLATEPATH . '/sidebarBottom.php'); ?>
</div><!--bottomsidebar-->
</div>
<?php get_footer(); ?>


Jerson Baguio comments:

replace with code i pasted above but make sure you have a backup just in case everything goes wrong.

and the letter 'S' with it was removed just let me know and i think the code above will also fix the footer.

2011-12-05

Navjot Singh answers:

Can you mail me your blog login?

2011-12-05

Julio Potier answers:

Hello, can you paste your sidebar.php page ?
Thx


Charlotte Raboff comments:

<?php /*?><div id="sidebar1">
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>
<?php /*
<li>
<h2><?php _e('Categories'); ?></h2>
<ul>
<?php wp_list_cats('sort_column=name&hierarchical=0'); ?>
</ul>
</li>

<li>
<h2><?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>

<li>
<h2><?php _e('Links'); ?></h2>
<ul>
<?php get_links(2, '<li>', '</li>', '', TRUE, 'url', FALSE); ?>
</ul>
</li>


<?php endif; ?>
</ul>
</div>
<?php */?>

2011-12-05

Manoj Raj answers:

Hi,

Your layout itself is totally a mess. The "I" as you mentioned is the footer copyright thing

"| Copyright © 2011 Thailand Living |"

The first "|" before the copyright thing is separately being displayed in your layout.


<!--blog-->
s
<!--blog-->

search for the above lines in your layout and remove it


Manoj Raj comments:

And you have missed a closing </div> somewhere. Thats the reason the footer is aligned wrong.

2011-12-05

Kristel van den Akker answers:

The s is on line 530. It is an unrelated s between to comments of blog.

The | is the first | of your footer copyright mention. Because the footer is pushed upwards, the text broken off too. You only see the first | of | Copyright &copy; 2011 Thailand Living |.

If you need me to help you, let me know.