Hi friends, Here on my medical students blog, I am using the MagPress.com theme. I am trying to remove the tag option to be displayed after the title as I have more than 20 tags and it looks weird on my blog on each article. I also want to remove the category option displayed just below the title of my blog, it is taking lot of space. If anyone can help me out in this, will be much appreciated Thanks.
It would be easy just remove the code from the header.php which displays category i.e wp_list_categories(); and remove the_tags(); code from your index.php , archive.php and any other file which shows tags under title...
Thank you very much one rep added too Also one more question : The banner which I have posted just now, I wanted as the complete header, instead of half of the header, can you help ? Thanks again.
That is also simple just have to do small change in your style.css . Find #siteinfo and #topbanner and remove float and width from both. You will get full width with that. Right now the banner is aligned towards right you can adjust that according to your needs , just make changes to text-align for #topbanner
Thank you very much for your info, it was difficult but I got it rectified as I had to remove some stuff from header.php too. However now the banner is left aligned, can you tell me how to do it in center. Thanks again.
In your #topbanner you have entered text-align:auto; just replace it with text-align:center; that will do the job.....