Joshua Sigar
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Customizing the look of your linksThe bullet could be removed with the addition of the following in your CSS file.
li {
list-style-type: none;
}I suppose http://codex.wordpress.org has some articles on styling list. Check it out.
Forum: Themes and Templates
In reply to: CSS: how do I set border in a hyperlink?Maybe
p img, a img {
...
border: double black 1px;
}Forum: Everything else WordPress
In reply to: Spam experiment: FYIThat’s why I never got any spam. Good finding.
Forum: Installing WordPress
In reply to: are there any ways to change position of “Current Mode”?Probably just change the following line…
add_filter('the_time', 'moody');..to this one…
add_filter('the_content', 'moody');Beware, “the sky might fall on your head.”
Forum: Fixing WordPress
In reply to: Previous and Next postYou have to put them within PHP tags, like follows.
<?php previous_cat_post(); ?>Forum: Themes and Templates
In reply to: Calendar previous and nextIs it normal for me to have them, and do I just add any other plugins to that folder?
Yes and yes.Somewhere I saw something that indicated that one could, and possibly should, separate WP from their Blog
I’m not clear as to what you mean by that. It could be the following: http://wordpress.org/docs/installation/different-address/would this mean that I could have several blogs on my server, with just one copy of WP, and would the plugins be installed once, for all blogs, or would each blog have its own plugin folder?
The thing you say above is not normally done by the most of us. More info: http://codex.wordpress.org/Installing_Multiple_BlogsForum: Themes and Templates
In reply to: background doesnt loadSo, on your computer, all the browsers: IE, Firefox, Opera, Safari, and Konqueror, show no background?
Oh, boy, how I love shooting in the dark. Thanks for taking away our time. 😉
Forum: Fixing WordPress
In reply to: Is it possible to use a seperate template for a single “page”?In other words, what is it that says “use this template instead of that one”
Are you referring to Page Template?Forum: Installing WordPress
In reply to: Pages won’t align<div id="content" class="narrowcolumn">
Where’s that div above coming from? It doesn’t belong there, I suppose.Forum: Plugins
In reply to: Problems with WP Tiger Administration pluginIf you look at the html source code of the admin panel, do you see something like the following.
<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/wp-content/plugins/wp-admin-tiger/wp-admin-tiger_files/wp-admin.css" />Forum: Plugins
In reply to: Problems with WP Tiger Administration pluginTiger only takes effect on Firefox, I believe.
Forum: Fixing WordPress
In reply to: Comments link not working.htaccess file needs to be updated with new rules for every Pages created in the Write > Write Page admin panel.
I don’t believe the above statement is true. Writing a Page does not need updating permalink. Verify it yourself.
Edit: I was wrong; Moshu’s right.If so, and that is a non-issue/concern (I don’t have other users) then I might as well leave it, right?
Again, I don’t know what I’m talking about, but…
If you’re in a shared host (which is likely), a 666 permission allows other users in that server to write to that file. Verifiy it yourself.Forum: Themes and Templates
In reply to: Calendar previous and nextJust make it a plugin. Copy the original function to your plugin file, rename it, modify it, and call it from your theme.
What editor you use? Just use a simple text editor, e.g. notepad.
PHP is interpreted; no need to compile; edit and upload back to server.
Forum: Fixing WordPress
In reply to: Comments link not workingYes, you could go back to 644.
Forum: Fixing WordPress
In reply to: Using Image As TitleChange your
background-imageto..
background: transparent url(http://blogsfornatalee.com/images/banner2.jpg) no-repeat 4px 0px;The 4px value is the offset from the left; 0px is the offset from the top. Adjust those values as necessary.