cdybenko
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need Help Calling Javascript FunctionTry linking to the javascript file in the head of your page.php document
<html> <head> <script type="text/javascript" src="<yoursite>/wp-content/themes/theme_name/scripts/yourjavascript.js"></script> </head> <body> </body> </html>
Then try calling the javascript functions from anywhere in your page.php file.
Also try a theme that uses javascript and see how they link to the script source and then use it in the theme.
Good luck!
Forum: Fixing WordPress
In reply to: RSS Widget Error 111?TestRSS2 is working because that feed has content in it.
The first two feeds you added are not displaying because they are pointing at your own blog installation which has no posts to show.
Forum: Fixing WordPress
In reply to: RSS Widget Error 111?biv,
Where are you seeing the error? Is it in the admin where you set up the feed or on the front end of your site?
Forum: Fixing WordPress
In reply to: Search Box won’t align leftI’m assuming you’re talking about the Google search form in the sidebar?
From my view, it is aligned left, but it has some additional padding on the left side that is indenting it. Often forms have margins and padding that can make them break your design. It’s always good to set them to zero.
In your case, you can set the left margin of this form to zero by adding the following style to your wp4.css file.
#menu ul li form { margin-left:0px; }
I hope that helps!
Forum: Fixing WordPress
In reply to: Display a static content section on category pagesThe All-in-one SEO pack allows you to write a description for each category.
A few articles that might be useful:
Forum: Installing WordPress
In reply to: commenting produces blank pageI suggest you contact the theme designer – I just tried to comment on your site and there are no PHP errors, just the blank screen.
Maybe the theme wasn’t designed to handle comments the way you have it set up where you make the person sign up for a unique login on your site to comment.
It might be missing a simple thankyou template or something.
Forum: Themes and Templates
In reply to: Indent Tagline in Daydreams 2.0 ThemeIn the file style.css change the line:
#headertitle .description{font-size:1.2em;line-height:2em;}
To this:
.description{font-size:1.2em;line-height:2em;padding-left:12px;}
Explanation:
- There is no ID of “#headertitle” used in your HTML. IT was blocking the browser from finding the nested “description” class.
- By adding “padding-left:12px” to your “description” class, it will be equal to the padding-left set on your title.
Good luck!
Forum: Themes and Templates
In reply to: Display latest post on front pageMake a copy of your index.php file and call it home.php
Home.php will be the default page served when you are on the home page.
In home.php you can limit it to pull only one article, and leave the index.php to function for the rest of the site (archive pages etc.)
See how the hierarchy of template files works here:
Template Hierarchy imageForum: Themes and Templates
In reply to: How do I remove themesIf you have the default installation it will be in the root of your WP installation.
~installation_folder~/wp-content/themes