hey.. I have no idea about CSS which has made this task almost impossible to solve,... Im have wordpress version 2.6 i need to know precisely how to add images (logo and banner) one way is simply by replacing the logo in the theme folder.. but how the heck do i align it correctly and to the size i want.. pls give me what code to implement and where so.. well. im looking for the code to align and resize my image. thank u any help frm the pros will be appreciated
I am not sure how much experience you have with editing html, you need to edit the header.php file of the theme, and put the code for your logo/banner in there.
In this WordPress theme you need to edit header.php the basic XHTML is: <a href="http://www.yoursite.com"><img src="http://www.yoursite.com/yourimage.jpg"></a>
Thats simple, just open header.php file inside your theme folder and look for this code > <a href="<?php echo get_settings('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/images/logo.gif" alt="<?php bloginfo('description'); ?>" /></a> Code (markup): Here template url is the the root to your site theme (which you are using) and in it Logo.gif is the logo image Displayed in Header (from Images folder) Just edit it with the name of image You want to display..