Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: my first wp website… please help!You should be able to copy the CSS from the Firebug panel and paste it over the CSS in your style.css file. This will work in most cases.
NB: The
-moz-backgroundproperties are browser (Firefox) specific and may not be required in a lot of cases, such as this one.Forum: Fixing WordPress
In reply to: Plugins hooks, is there a library?Try this web site/link: http://adambrown.info/p/wp_hooks/
Forum: Plugins
In reply to: I can’t display the calendarAlthough the documentation is showing the use of the “{}” (curly) brackets, have your tried the “[]” (square) brackets?
Such as:
[CALENDAR]Forum: Themes and Templates
In reply to: No CSS/Javascript in a specifical page/post/homeIf you are referring to active widgets in your sidebar adding JavaScript and/or CSS to your header then you may need to look at specific sidebar templates in the same fashion as I recommended above.
Here is another codex page for your reading pleasure:
http://codex.wordpress.org/Function_Reference/get_sidebarAlthough your original question implied a much more simpler issue.
Forum: Fixing WordPress
In reply to: Where to put this function ?Most scripts will generally be found in or link to from the header.php file of your active theme.
Forum: Themes and Templates
In reply to: No CSS/Javascript in a specifical page/post/homeI would suggest using page templates that call specific header templates.
See these codex links for more information:
http://codex.wordpress.org/Pages#Page_Templates
http://codex.wordpress.org/Function_Reference/get_headerForum: Fixing WordPress
In reply to: Sidebar is not justified – looks bad- alignment offIt appears you are using the “Default” theme so do keep in mind with the next update of WordPress you may end up over-writing all these changes you have made; and, you may need to re-edit as needed.
That being the case, this may help with the “subscribe” link (from sidebar.php in the Default theme):
<?php /** * @package WordPress * @subpackage Default_Theme */ ?> <div id="sidebar" role="complementary"> <ul> <li> <!-- Your special edits in between this new 'li' block --> <a href="http://feedburner.google.com/fb/a/mailverify?uri=Horseandmancom&loc=en_US">Subscribe to horseandman.com by Email</a> </li> <?php /* Widgetized sidebar, if you have the plugin installed. */Forum: Fixing WordPress
In reply to: Sidebar is not justified – looks bad- alignment offThis article link into the Codex may help with what you are looking for:
http://codex.wordpress.org/Plugins/WordPress_Widgets#Using_Text_WidgetsForum: Fixing WordPress
In reply to: Threaded comments and bolding in ThemeBoth items may be theme related, especially threaded comments “not appearing”. You may find it useful to provide a link to your blog and the name of your active theme to get additional suggestions.
Forum: Fixing WordPress
In reply to: Sidebar is not justified – looks bad- alignment offYou may have been better off using a text widget for those links versus editing the theme files.
Forum: Fixing WordPress
In reply to: How to Rename the Home pageMy first thought would be to expect a theme related issue for your “home” link.
Forum: Themes and Templates
In reply to: Need help with CSS style please. Must be simple… I hopeInstead of using the images as CSS “backgrounds” try making them clickable with something like:
<img src="url-to-your-image" alt="" />Forum: Fixing WordPress
In reply to: How to Rename the Home pageInstead of the “code” above try this:
!is_page('contact') || !is_front_page()Forum: Plugins
In reply to: Hide Multiple Categories on Front PageI believe you would simply use comma separated values when using numeric ID only, such as:
<?php if ( !(in_category( '4,5,6' ) || !is_home() ) { ?> <!-- Output the post here -->Glad you found a working solution.
Forum: Plugins
In reply to: Hide Multiple Categories on Front PageThis page in the codex may be useful: http://codex.wordpress.org/Function_Reference/in_category
Try something like the following:
<?php if ( !(in_category( (array('4','four','4th')) ) || !is_home() ) { ?> <!-- Output the post here -->Replacing the elements in the ‘array’ with your specific choices.