zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Font sizesLink the site please. But yes usually you will need to set the font size in the css for your theme if it’s not the size you like it.
Forum: Themes and Templates
In reply to: Help replacing an imageThere’s actually 3 seperate images at the top of your theme. One behind the title, one to the right with the coffee cup and the other with the pens on it.
Easiest way is to just rename the image you want to use to match the name of the image being used now. You might have to adjust the css for the image to fit right if it’s a different size.
If you don’t want the other images there and just want one, you can comment the css out to remove them.
#headerleft {
#logo {
#cup {
are what to look for in the style.css. to adjust these for your own images.#logo {
margin-left: -93px;
float:left;
background:url(images/logo-bg.png) no-repeat;this is the code in the css for the center log image, put your new image in the images directory of your theme, and either name it the same, or change the name in the css.
Forum: Themes and Templates
In reply to: I would like to centre the body textI think you’re using snazzy archives for that mage, and i’m assuming you put a shortcode into a page post to have it appear. Try just selecting the shortcode in the post and using the editor center button.
I can’t right click on your site to use firebug so I can’t help with the rest.
Forum: Fixing WordPress
In reply to: want only most recent post to appear on index pageDidn’t say to remove it all, learn to read first, and you’re welcome for me taking the 20 seconds to Google this answer.
Forum: Fixing WordPress
In reply to: How to Change Admin UsernameI’m not sure how to manually do it, but there is a plugin that I use, called wp-Optimize. It simply cleans up old spam comments and old drafts, but there is an option to also change the admin username which worked perfect for me. Very simple to use.
Forum: Fixing WordPress
In reply to: import of WordPress blog failsHave you tried creating an uploads directory?
Forum: Fixing WordPress
In reply to: Delete home page for twist of ten themeTaken from their site…
To set-up the theme simply create a ‘Home’ page and set it to use the custom front page template. If you want to display a ‘Blog’ page link then similarly add a new page using the blog page template. Then go to Settings => Reading and set the active home page and blog page accordingly.
I’ve never used it, I think you just need to select a different page template though.
Forum: Themes and Templates
In reply to: can i create child functions.php file for twentyten?I think it depends what you have in your functions.php file
Forum: Themes and Templates
In reply to: Changing the footer links in Atahualpa ThemeIn the Edit Themes Page select “Theme Functions”(functions.php) on the right side of the screen.
A little less than a quarter of the way down the functions.php code you will find:function footer_output($footer_content) { $footer_content .= ‘<br />Powered by <a href=”http://wordpress.org/”>WordPress</a> & the <a href=”http://wordpress.bytesforall.com/” title=”Customizable WordPress themes”>Atahualpa Theme</a> by <a href=”http://www.bytesforall.com/” title=”BFA Webdesign”>BytesForAll</a>. Discuss on our <a href=”http://forum.bytesforall.com/” title=”Atahualpa & WordPress”>WP Forum</a>’; return $footer_content;return $footer_content;`
Change that entire section with:
function footer_output($footer_content) { return $footer_content;Click Update File
Forum: Themes and Templates
In reply to: Help turning a 2 column theme into 1 ColumnI;m not sure exactly which files you would need to edit, but you’ll have to go through and remove the sidebar code, then edit the css to make your content area wider.
Not sure if this will work, but try adding
.sidebars { display: none; }to the bottom of your css and see what happens.
Forum: Fixing WordPress
In reply to: want only most recent post to appear on index pageFirst, goto Manage > Categories and get the ID of the Category you wish to exclude. Then, go to WP admin and select Presentation > Theme Editor ..
For your current theme, edit the loop where the posts are displayed. It varies according to the theme…
<?php /* Start the loop */ while ( have_posts() ) { the_post(); ?>MODIFIED CODE :
<?php /* Start the loop */ while ( have_posts() ) { the_post(); if (is_home()) if (in_category(’14′)) continue; if (is_home()) if (in_category(’47′)) continue; ?>The modified code doesn’t show posts that belong to Categories 14 and 47 in homepage.
Forum: Themes and Templates
In reply to: Restore Hello WorldThe Hello world is a post not a page as far as I know, just create a new post and it’ll show. If you want to create a page, just click page and add new in the admin, it’s nothing to do with the theme.
Forum: Themes and Templates
In reply to: What is this theme?Forum: Themes and Templates
In reply to: Add URL to image captionHave you tried clicking the html tab, then publishing the post?
Forum: Themes and Templates
In reply to: Add to favorites button?There’s lots of social bookmark plugins that do this in many different ways.