doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multiple post thumbnail sizes?virgild,
You can use the CSS class of:
.wp-post-image { width: 100px; height: 100px; }or you can be a little more specific within a template by using:
<?php the_post_thumbnail(array( 100,100 )); ?>to specify where the thumbnail should appear and what size it should be.Forum: Fixing WordPress
In reply to: Custom content in templates headeridealists,
Place something similar ( by simialr I mean add the text and CSS styles needed ) to this code on either your index.php or header.php file, in the location you would like the custom information to appear. This does not need to be within the loop.
<?php if (is_home()) { ?> <div class="style-name">Hello World, This is the Home Page</div> <?php } else { ?> <div class="style-name">Do Nothing</div> <?php } ?>Forum: Fixing WordPress
In reply to: Multiple post thumbnail sizes?virgild,
WordPress provides a thumbnail during upload. Check your settings here: Settings > Media > Thumbnail size.
In case I misunderstand, you can always size an image with CSS bringing the size down to 100×100 like so.
.image-thumbnail {
width: 100px;
height: 100px;
}Forum: Fixing WordPress
In reply to: How to ad Adsenseoriolesprospects,
Check the WordPress Extend for an adsense plugin, this seems to be the simplest way.
Forum: Fixing WordPress
In reply to: Sidebar spacing and alignmentrogerpaige,
Add a few additional styles to your stylesheet for:
#text-16
#text-18
#text-21
#text-12
etc.Add a top margin to these of say 10px and this will correct your spacing issue. Which widget are you wanting to center? To answer th final question there is no float: center.
Forum: Fixing WordPress
In reply to: 3 different post, what no ones ones how to fix this???More specifically: Settings > General then change the “Blog Title” and “Tagline” fields.
Forum: Fixing WordPress
In reply to: How to clear cookies?alexvorn2,
You need some php tutorials. See if this helps: http://www.tech-recipes.com/rx/1501/php_delete_or_expire_a_browser_cookie/
Forum: Fixing WordPress
In reply to: Cant Upload Photos!dacane,
RVoodoo is right on track we need to know what is happening to assist you.
Forum: Fixing WordPress
In reply to: Post links not working, still in categories, blogsandbender,
Include a link to your site and paste the sidebar code where we can read it.
Thanks,
Forum: Fixing WordPress
In reply to: Fixing link structure/paths after moving files to root directoryjunkhed1,
What are your permalinks set to? Settings > Permalinks
Forum: Fixing WordPress
In reply to: Moving cutom imagelanzko,
Add background-position to the #header .wrapper style then wrap the text in a div and add a margin-left to move it over.
Here is a starter. Note that I’ve shortened the url for instructional purposes and combined all three background properties into one.
#header .wrapper {
background: url(image.jpg) no-repeat 10px 10px;
height: 100px;
}Forum: Fixing WordPress
In reply to: Highlighted search results?mismatchedpear,
There are a few search plugins that have this feature built in. Check the plugin repository.
Forum: Fixing WordPress
In reply to: how to add plugin to wordpress directorysribharath,
Visit: http://wordpress.org/extend/plugins/add/ to start adding your plugin. You will want to get an SVN program as well to make changes and updates. Something such as Versions: http://versionsapp.com/ will do the trick.
Forum: Fixing WordPress
In reply to: Moving cutom imagelanzko,
Include your web site address so we can take a look and make suggestions. Thanks
Forum: Fixing WordPress
In reply to: How to stop registered users sharing logons?Downsouth,
I don’t believe it is possible to prevent users from sharing login information. This would be the case with any password site.