amulet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Now What? (Validation)That worked, thanks!
Forum: Fixing WordPress
In reply to: Getting Rid of Comments in PagesI’m not an expert, but you might try getting rid of (or commenting out) lines in your theme’s page.php file (if you have one) that include the following:
<?php comments_popup_link(__(' Comments?'), __('1 Comment'), __('% Comments')); ?><?php comments_template(); // Get wp-comments.php template ?>If you don’t have a page.php file for your theme, you can either take those lines out of index.php, or create a page.php file that doesn’t include them (so you can still have comments for posts…although I think you can create a separate post.php file, too, if you want).
Forum: Fixing WordPress
In reply to: Weird ProblemThat did it! Thanks!
Forum: Fixing WordPress
In reply to: Post SummariesCool! That looks like it’ll do just what I need! Thanks!
Forum: Fixing WordPress
In reply to: Post SummariesThat works, but is there an automatic way to do it, so that all posts stop at a certain number of words or the first paragraph or something, without having to put in the more tag? Thanks.
Forum: Fixing WordPress
In reply to: Need some help …Someone else will have to give you help for the comments link issue, but to use your own design, you need to create a theme. Information on that is in the Codex.
Forum: Fixing WordPress
In reply to: Validating One’s SiteI did a quick check in Editpad, and some of the files did have the tags still capped. I fixed that.
Normally, Dreamweaver works great for me. But yes, I’ve had times when it was necessary to go into a text editor; unfortunately, I sometimes forget that might resolve issues.
I’m still trying to figure out why the Meta links (as well as trackback and “Edit this entry” links) aren’t showing up linked.
Forum: Fixing WordPress
In reply to: Validating One’s SiteDreamweaver and CuteFTP. Another thing I’m noticing is that the news feed that is put out by CG-Feedread is putting the tags in all caps, even though the script doesn’t show them that way. I’m seeing the links under “Meta” aren’t coming up linked, too.
Forum: Fixing WordPress
In reply to: Validating One’s SiteYeah, I caught that, but here’s the weird thing…I have tried uploading my sidebar.php about four times now. In my editor, I have it all lowercase tags. But after I upload it and view the source of my site, it shows up capitalized. What can be causing that?
Forum: Themes and Templates
In reply to: CSS Question(s)Sorry I didn’t get back to you sooner…
For the sidebar bg, just put this:
#sidebar {
background-color: #XXXXXX;
}Actually, I’m not seeing anything at that URL (I realize you meant miwaterfowler.com). Do you mean that you want the post to be in the center (but you don’t want the post text centered), evenly between the left and right columns? You can probably fix that by using margin settings. Try this (or you might use it for the main page ID, rather than just
.post), editing the “0px” with different numbers, which can be positive or negative (using a minus sign)–and leave any other settings that are already set for the selector:.post {
margin: 0px 0px 0px 0px;
}I don’t know what settings will work best for you, but the way I remember what each of the values and which side they represent is to think of the word TRouBLe. The consonants in the word are the order of the numbers: T=Top, R=Right, B=Bottom, and L=Left. So, the first 0px controls the top margin, the second 0px controls the right margin, and so on. Try changing the numbers for the left and/or right margins, and adjusting that way.
Forum: Themes and Templates
In reply to: CSS Question(s)First, let me give you a couple of links for CSS references:
http://www.blooberry.com/indexdot/css/index.html
http://www.htmlhelp.com/reference/css/
http://www.webreference.com/authoring/style/sheets/1) It can depend what theme(s) you’re using, but I think most, if not all, people doing WordPress themes use a class simply called
.postin the CSS to handle the posts. In the default theme, it looks like this:.post {
margin: 0 0 40px;
text-align: justify;
}You can simply change the text alignment setting as follows:
.post {
margin: 0 0 40px;
text-align: center;
}and that should do it. If your theme uses a different class or ID for posts (or anything else you want to change), you’d need to match up the HTML and classes/ID’s in the index.php file to the CSS file. For instance, if you see
<DIV CLASS="spfeat">somewhere in the theme file (let’s say the sidebar.php file for now), and you wanted to change the look of that section, you’d find.spfeatORdiv.spfeat(the latter meaning that the.spfeatclass only works under thedivselector), and change the properties and values of that class.I don’t know how much you know about CSS, so if I tell you stuff you already know, please don’t think I mean to insult your intelligence. 🙂
2) Do you have something like this in your theme’s index.php file:
<H2><A HREF="<?php the_permalink() ?>" REL="bookmark" TITLE="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></A></H2>Or, is a heading tag (
<H1></H1>,<H2></H2>, etc.) wrapped around code that includes<?php the_title(); ?>? Most likely, you’ll see something like this. You can do two things (or both):Change the heading tag to a larger size, if possible, or find the selector (
h1,h2, etc.) in the CSS file and change thefont-sizeproperty setting. See this page for more info on the values you can use. Also see the page for thefontproperty for other options.3) I’m going to assume you’re using the default theme, and that you have this in your CSS file:
small {
font-family: Arial, Helvetica, Sans-Serif;
font-size: 0.9em;
line-height: 1.5em;
}You can change the
font-sizeproperty (or use a smaller font, if you want) to the size you want, or use other values as the page I linked when I answered 2) gives you information on.4) As for changing the sidebar, do you mean you want to change the font colors? Find this in the CSS file:
#sidebar {
font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
}
and add:
color: #XXXXXX;where #XXXXXX is the hex value (color code) you want. You can also give different link colors by adding this:
#sidebar a:link {<br />
color: #XXXXXX;<br />
}#sidebar a:visited {<br />
color: #XXXXXX;<br />
}
#sidebar a:hover {<br />
color: #XXXXXX;<br />
}#sidebar a:active {<br />
color: #XXXXXX;<br />
}(Of course, delete any of those you don’t want to use.)
Hope this helps!
Forum: Themes and Templates
In reply to: Remove “li” stylings from link headersI’m not 100% sure, but if it works like a problem I recently had, you can wrap the PHP call for the links function in
<UL></UL>tags with a class setting for no list style in the CSS file. So, in the CSS file, you might have this:ul.nobullet {
list-style-type: none;
}And then you’d wrap just the links PHP call like this:
<UL CLASS="nobullet"><?php get_links_list(); ?></UL>Someone else might know a better solution, but this should work.
Forum: Plugins
In reply to: CG-PowerPack 1.5.3.1 Released.Thanks, but I finally got it after about four tries. I’m not quite sure why it didn’t work the first time, but I finally got it. I usually manage to get plugins and programs working just fine, but this one took a while. The third-or-so time I tried, my FTP program acted buggy, showing me files that weren’t there (but had been the previous time I tried), so that made that attempt almost sure to fail. Anyway, I’ve got the plugin installed, and I’ll hopefully have no more problems, but I’ll deal with the rest tomorrow. Thanks.
Forum: Plugins
In reply to: CG-PowerPack 1.5.3.1 Released.I’ve been going crazy trying to get CG-Amazon in CG-Powerpack to work. I want to use other plugins in the Powerpack, but CG-Amazon is the one I’m most interested in, if it’s as good as I’ve heard, and I’ll worry about the other plugins after I get this one working.
Thing is, it isn’t working. I got it installed and activated, and it wants the cg-plugins/cga-admin.php to be in the wp-admin directory. Ok, so I moved it there, which got the admin to work, at least insofar as calling the cga-config.php file. And that brings up these errors:
Warning: main(ABSPATHWPINC/pluggable-functions.php): failed to open stream: No such file or directory in /home/username/public_html/test/wordpress/wp-admin/cg-plugins/cga-config.php on line 22
Warning: main(ABSPATHWPINC/pluggable-functions.php): failed to open stream: No such file or directory in /home/username/public_html/test/wordpress/wp-admin/cg-plugins/cga-config.php on line 22
Fatal error: main(): Failed opening required 'ABSPATHWPINC/pluggable-functions.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/username/public_html/test/wordpress/wp-admin/cg-plugins/cga-config.php on line 22I’ve looked at all the files, and there *is* no pluggable-functions.php file. I’ve also moved files around, trying to get the thing to work, and no luck. If there’s anything obvious I’m doing wrong, I’d appreciate a reply. Thanks.
Forum: Themes and Templates
In reply to: Post/Page Lists vs. Sidebar ListsTo Lorelle: I meant to add that I wasn’t freaking out when I said, “Drop everything, I need your help!” I was just joking. Sorry if I came across as exasperating.
Miklb, I’ve just done that. You’re right, it’s a better idea. I don’t know why it is, but if there’s a harder way of doing something, I’ll find it. I don’t set out to do things the hard way, but I seem to have a knack for finding it. I think I tend to get so involved when I’m doing certain things, I miss the obvious or best solutions. Thanks.