Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Excerpt, TitleLooks great, if I may add.
Peter
Forum: Themes and Templates
In reply to: Excerpt, TitleI saw that one coming, and I was thinking about a solution involving custom fields, but a little search brought me to this plugin.
See if it does what you want.
Peter
Forum: Themes and Templates
In reply to: the_excerpt() text colorFind this in your stylesheet:
#home-top .post p { padding:0 0 12px; }and add a color:
#home-top .post p { color:#FFFFFF; padding:0 0 12px; }Peter
Forum: Themes and Templates
In reply to: Excerpt, TitleI’ve just downloaded the vita theme (which is what you’re apparently using), and found that the original theme contains
<?php the_content('Read the rest of this entry →'); ?>.Did you by any change add the_excerpt(); to it?
It’s meant to replace the_content();
like:
<?php the_excerpt(); ?>Peter
Forum: Themes and Templates
In reply to: Excerpt, TitleForum: Themes and Templates
In reply to: Excerpt, TitleTo be absolutely complete: the default the_excerpt() should only display the first 55 words of a post, or whatever is in the excerpt.
If it doesn’t, the the_excerpt() has been modified (or isn’t used at all, of course, but I’m sure you checked).
Peter
Forum: Themes and Templates
In reply to: Excerpt, TitleIs it ‘my’ plugin?
I’ve tested it extensively at home (I admit, not a real test), but it could be that the_excerpt has been rewritten completely in your themes’ functions.php
Try to find something like
remove_filter('get_the_excerpt','some_function');in that file if it exists.
Peter
Forum: Themes and Templates
In reply to: center and size custom headerYou could try to move the entire #header div into the #wrapper div.
Now you have:
<div id="header"></div> <div id="wrapper"> <div id="content"></div> <div id="sidebar"</div> <div id="footer">/div> </div>and I suggest:
<div id="wrapper"> <div id="header"></div> <div id="content"></div> <div id="sidebar"</div> <div id="footer">/div> </div>Peter
Forum: Themes and Templates
In reply to: ERROR MSGThe only time I ever saw this error message was when there was white space before the opening
<?phptag.Peter
Forum: Themes and Templates
In reply to: Conflicting CSS IssuesLine 104 in your style.css
a:hover { text-decoration:none; }while the email address has:
#contact_info a:hover { color:#999999; }It’s only active for #contact_info.
Peter
Forum: Themes and Templates
In reply to: Tagline#headr .description { display:none; }just remove the
display:none;from your stylesheet.Peter
Forum: Themes and Templates
In reply to: How to add my logo to my headerWow..
ftpis a protocol providing other means of file transfer than via a web browser (wikipedia).This has a few prerequisites: the server you want to upload files to has to support it, you need a valid user account/password, and that user account needs write permissions in the directory you’re trying to upload to.
Does your provider have any other means for you to transfer files in your wordpress directories?
Peter
Forum: Themes and Templates
In reply to: How to add my logo to my headeryou don’t. You’ll have to upload the logo via
ftp.Peter
Forum: Plugins
In reply to: [Plugin: nStatistics] Even with new version (1.4) bad pathsYeah, that’s strange, I noticed when I updated.
I just went through my backups (which are made every 4 hours) and cannot detect any reference to a version 1.4.
Version 1.3 indeed works.
Thanks.
Peter
Forum: Themes and Templates
In reply to: the_excerpt() text colorI don’t think that’s what OP is asking:
You can (or probably have) put the_excerpt(); between divs, and style it the way you like:
<div class="yourstyle"> <?php the_excerpt(); ?> </div>and then in your stylesheet:
.yourstyle { color: #f00; }(if you want it red, that is 😉 ).
In many themes the content of a post is wrapped in a class classed post or entry, or something like that.
Peter