Need Help Making Minor WP Theme Adjustments

Hi,

I need help making some minor adjustment to this Wordpress theme layout.

http://themes.rock-kitty.net/flowerized/
http://themes.rock-kitty.net/demo/

o How do I remove the links in the footer? There is some funky
PHP code in the footer.php file which I can’t decipher.

o How do I remove the two small images under the sub-title in
the header. When I remove the list element lines that are
associated with them in the header.php file, it messes up the
page navigation bar.

o How do I move the Search function to the top of the sidebar?

Advice Appreciated

George

We can’t really edit code we can’t see

footer links…
can’t really help you with the footer. those seem to be sponsored links…and according to the terms of use file that comes with the theme, they are not to be removed.

header icons…
remove the whole div for the style option icons in the header…


  <div id="option">
<ul>
    <li><a href="#" onclick="setActiveStyleSheet('blue'); return false;"><img src="<?php bloginfo('template_url'); ?>/img/blue-small.jpg" alt="blue" title="blue" ></a></li>
    <li><a href="#" onclick="setActiveStyleSheet('pink'); return false;"><img src="<?php bloginfo('template_url'); ?>/img/pink-small.jpg" alt="pink" title="pink" ></a></li>
</ul>
  </div>

then in the Styelsheet (style.css), find the tab section and increase the margin-top value of #tab to push the nav text back down into place…


#tab { padding: 0; white-space: nowrap; [COLOR="Red"]margin-top: 67px;[/COLOR] float: left; font-size: 95%; }

Search function…
that should be in the Widgets section of the WP Dashboard…Appearance > Widgets. Look for a Search widget/tab in the Sidebar area on the right and drag it to the top.