Class
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Path to sidebar2 & sidebar3Maybe you can use
<?php bloginfo('template_url'); ?>here?Forum: Themes and Templates
In reply to: Link title on the frontpageThanks alot tanster.
Forum: Themes and Templates
In reply to: Link title on the frontpageYeah, I did that already, thats why I think it might be in the core WP files, since I found other things in there I had to translate before.
Forum: Fixing WordPress
In reply to: Weblog Title with an Image<?php bloginfo('name'); ?>is the code to display the name, just insert it before the above code if you don’t want it as a link.Forum: Installing WordPress
In reply to: Behind Router/LANIt’s the hosts that is correct and no, just use the domain, like my.dns.addy.org.
Forum: Installing WordPress
In reply to: Behind Router/LANYour host file can be found in WINDOWS\system32\drivers\etc.
It’s a plaintext file, edit with notepad or similar.Forum: Fixing WordPress
In reply to: how to get home page google to behave?There’s lots of information from google, did you read any of it? https://www.google.com/support/adsense/bin/answer.py?answer=9716&topic=139
Forum: Fixing WordPress
In reply to: Aligning Images.Yeah, if you only want it for images in posts, more adjusting have to be done and if you only want it for some images in a post, you have to add the class to the post manually 🙂
Forum: Everything else WordPress
In reply to: Photoblog?Well, my server did’nt like it and it doesnt work doesn’t give us many clues to troubleshoot either 😉
Forum: Fixing WordPress
In reply to: Aligning Images.I’m lazy and don’t want to add the CSS class every time I insert an image, so I’m using
p img {
max-width: 100%;
float: right;
padding-left: 3px;
padding-bottom: 3px;
margin-left: 2px;
margin-bottom: 2px;
}
this in my CSS file.Forum: Fixing WordPress
In reply to: Posting is Slow…..Do you use the same Update Services?
Is the “notify other blogs linked in article” (forgot what the option name is called in english (options -> discussion?), on?Forum: Everything else WordPress
In reply to: Photoblog?This perhaps? http://isaac.wedin.org/photopress/
Forum: Fixing WordPress
In reply to: WP2 screwed ?Maybe the cache is messing with things?
Try clearing it and/or disabling it.Forum: Fixing WordPress
In reply to: how to get home page google to behave?Well, the ads reflect the content, if the homepage contains mixed topics, the ads will as well.
It’s how adsense works 🙂Forum: Fixing WordPress
In reply to: Weblog Title with an ImageReplace your
<?php bloginfo('name'); ?>with<a href="<?php bloginfo('url'); ?>/"><img src="<?php bloginfo('stylesheet_directory'); ?>/imagefilename.png" border="0" /></a>should do the trick.