onseduction
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: MetatagsI think the excerpt must be within the loop. Though you probably can use some global for it.
Forum: Fixing WordPress
In reply to: How-to prevent users from posting on certain categories?The userextra plugin does that.
http://dev.wp-plugins.org/wiki/Userextra
You’ll also need the Usermeta plugin for it to work.
Forum: Fixing WordPress
In reply to: Justification doesn’t workI’m almost sure you use the tinymce editor. Problem is, it messed up. It inserted paragraphs where it shouldn’t, or maybe you tried to correct things and the editor misunderstood what you were trying to do. I think the best for you is to disable the fancy editor and use the good old one (as I do).
Forum: Themes and Templates
In reply to: alignment and positioning issuesI don’t get it, it looks ok as I see it.
Forum: Fixing WordPress
In reply to: Showing one full article and then excerptsYou could add a post counter into the loop. Eg: before the loop you set $i=0 and in the loop $i++. Then depending on the value of $i (in your case when $=1) do something with it.
edit: like kafkaeski said faster
Forum: Fixing WordPress
In reply to: How do I save after editing a theme?Is the file writeable? Does it say something like ‘if this file was writeable you could save it’?
Forum: Your WordPress
In reply to: My Site.post a:hover {
font-weight: bold;
}And change it to:
.post a:hover {
font-weight: underline;
}or
.post a:hover {
font-weight: none;
color: #ff0000;
}or something like that.
Forum: Fixing WordPress
In reply to: Links image AND textI think some basic knowledge op php will come in handy later too. And for your problem, I don’t know what the output is from the get_links when returned for php use. But I don’t think it will be that hard to create what you like.
Forum: Your WordPress
In reply to: My SitePersonally I would change the link hovers. If you hover over a link it gets styled bold, but that moves the text next to it.
Forum: Your WordPress
In reply to: My SitePersonally I would change the link hovers. If you hover over a link it gets styled bold, but that moves the text next to it.
Forum: Themes and Templates
In reply to: Styling the More TextMaybe you could put that text in span tags?
Forum: Fixing WordPress
In reply to: Links image AND textIf you know nothing about php things might be more difficult ofcourse. If you plan to do more stuff like this yourself I suggest you take a crash course like the ones you’ll find on the web.
Forum: Fixing WordPress
In reply to: Links image AND textI think you would have to do this through a plugin.
Forum: Fixing WordPress
In reply to: Prev/next Navigation on individual entry pages????This is already a tag. Look here for more information:
http://codex.wordpress.org/Template_Tags
Eg next_post and previous_post.
Forum: Fixing WordPress
In reply to: Sidebar ImagesMaybe you can use the links page in you wp-admin to do that. You can define an image for a link there.