shadow
Forum Replies Created
-
Forum: Plugins
In reply to: Post and Article listIn your archives file, look for either of the the following:
<?php the_content(); ?>or<?php the_excerpt(); ?>Remove them and it should leave only the title showing.
Forum: Your WordPress
In reply to: Blog Post Cut OffYou have some unclosed tags.
This one is causing your immediate issue:
<a href="http://www.elitekit.com target=newElite Kit</a>Drop the “ into place to fix it.
Forum: Themes and Templates
In reply to: Inserting a logo before the title – allmost thereI will just assume that is what you are trying to do…
So, change the code you now have to the following:
#header { height: 100px; background: url('images/rob_logo.gif') no-repeat top left; }and in your description and h1 elements change the current left:25px to something like 305px instead
Forum: Themes and Templates
In reply to: Inserting a logo before the title – allmost thereDo you mean you want the current image in your header to sit to the left and the words[title/description] to the right of the image?
Forum: Themes and Templates
In reply to: Cutline list and font issues2nd problem:
Add the following to your css [adjust to suit]
.page_item, .current {font-size: 12px; }Forum: Installing WordPress
In reply to: size of banner?932 x 150
Forum: Themes and Templates
In reply to: Themes like NY TimesUbiquitous has the flexibility to do whatever you want with it – especially for magazine and newspaper styling.
Forum: Installing WordPress
In reply to: size of banner?Do you want the size in pixels of your banner – just the image?
Forum: Fixing WordPress
In reply to: page distorts after clicking on categoryAnd in this post – What to Do When Best Option Fails – you have a Youtube video which appears to be right at the point where it all breaks – try taking it out and see if it rectifies the issue – and if so, work on that as well.
Forum: Everything else WordPress
In reply to: Sentences on bottom of each articlesTo have the example you have shown, included at the bottom of your posts, paste the following code under the
<?php the_content(); ?>call on your index.php and single.php files within your theme.——————
This entry was posted on<?php the_time('F jS, Y') ?>and is filed under<?php the_category(', ') ?>. You can follow any responses through the<a href="http://your_site.com/feed">RSS 2.0 feed</a>. You can leave a response, or trackback from your own site.
——————
You can play around with the date and time structure as explained in the codexForum: Fixing WordPress
In reply to: Page text ends early, text ends with […] (Posts are fine)You need to edit your theme page.php file.
Change the code from
<?php the_excerpt(); ?>to<?php the_content(); ?>Forum: Your WordPress
In reply to: Examples of WP that don’t look like blogs?Thanks Moshu.
As I say on the site itself, it’s not for everybody but I think it does provide quite a bit of flexibility and a chance to get away from the usual format.
Controlling the post sizes using the MORE tag plays an important part.
Forum: Themes and Templates
In reply to: Huge font problem with siteHave a look for this line in your css:
ul#nav li { padding: 0.85em 40px 0.7em 0; font: bold 1.4em Helvetica, Arial, sans-serif; text-transform: uppercase; float: left; }and change to:
ul#nav li { padding: 0.85em 40px 0.7em 0; font-weight: bold 1.4em Helvetica, Arial, sans-serif; text-transform: uppercase; float: left; }Forum: Your WordPress
In reply to: Examples of WP that don’t look like blogs?I have been working on something a bit more like a magazine/newspaper, but not completely finished yet.
Started out just for my own use, then thought I might release it halfway through and now not really sure whether to just start all over again.
But anyway, it’s a bit different than the common 2 and 3 column look.
Forum: Themes and Templates
In reply to: Tagline in Browser WindowI think this may work by itself,
<title><?php bloginfo('name'); ?> | <?php bloginfo('description');?></title>so the description call is possible.
If you try that by itself, that will eliminate that part of the problem. And then if it works, the next step is to sort out your conditional calls – which will involve help from a far more knowledgeable person than myself.