skulled
Forum Replies Created
-
Forum: Plugins
In reply to: Need Help-WP-useronline (Gamerz)Going to this link in your browser should do the job:
Forum: Themes and Templates
In reply to: css problem (author page related)It seems all the others are working fine .. which brings us to the conclusion that one of the posts by that author is the one that is causing the problems.
I will try take a look at the individual posts, and get back to you if I find something wrong ..
Maybe someone else has other ideas ..
Forum: Themes and Templates
In reply to: Spacing on the sidebaryou are right .. the moon mod and the calendar are just tables hanging in the sidebar ..
But all blocks after that are contained within
<li>
tags and the sidebar ends with a</ul>
tag ..Try correcting the whole structure in the sidebar ..
Forum: Themes and Templates
In reply to: css problem (author page related)First you need to figure out what is wrong, and then you can correct it ..
Do you have more than the two author pages that you posted the links to?
Forum: Installing WordPress
In reply to: Resizing the, “Leave a Reply” Comment Box?Whats the link to your site?
You might want to try changing the
cols
attribute to thetextarea
inside thecomments.php
file in your theme ..Forum: Themes and Templates
In reply to: Spacing on the sidebarYour sidebar width seems to be overlapping on the content area, since I can see
ul
bullets inside the content area ..Plus what is the mod that you made, please be more specific in what you are trying to do..
Forum: Themes and Templates
In reply to: css problem (author page related)I had a look around the links that you provided, and I cannot see anything in particular that could be wrong ..
So here’s a list of things that you might have to check to mail down the issue:
1. Check your widths in the CSS and make sure none of the posts are making any trouble.
2. Check for un-closed containers in the (X)HTML code ..
3. And perhaps you might want to validate your document a little better, that would help a lot in seeing what might be going wrong. You have a whopping 432 errors in your XHTML Strict DOCTYPE validation .. ??
If none of that helps, then post back ..
Forum: Themes and Templates
In reply to: Theme index.php HELP!!!No Problem.
Glad to be of help. ??
Forum: Themes and Templates
In reply to: Theme index.php HELP!!!Ok here’s is what seems to be the problem:
If you look at the code, around line 149 you see this bit:
<?php if(function_exists('zc_show_events')) :
zc_show_events();
endif;?
Change this to:
<?php if(function_exists('zc_show_events')) :
zc_show_events();
endif;?>
That should take out the parse error ..
Forum: Themes and Templates
In reply to: Theme index.php HELP!!!I think you misunderstood me ..
We need to see the actual code inside
index.php
and perhaps evenheader.php
/footer.php
, not the error displayed in the browser.So open the files up and paste the entire code in the file to the link I gave you, and this will provide you with a link to the code that you posted, which you can post back here, so that we can see the actual code.
If you have any questions on how to do this post back ..
Forum: Themes and Templates
In reply to: Theme index.php HELP!!!Can you post the code from your
index.php
file here and give the link:That might be more helpful ..
Forum: Plugins
In reply to: Notify user for new articleForum: Fixing WordPress
In reply to: Enable ExerptsIn your theme files, your posts are being posted using
the_content()
template tag ..To post just the excerpt, use
the_excerpt()
..Take a look here:
https://codex.www.ads-software.com/Template_Tags/the_excerpt
If you have any other questions, post back.
Forum: Everything else WordPress
In reply to: Help with XML-parsingDo you want the “artist and track” information to be displayed in your blog? If yes, where exactly?
Forum: Everything else WordPress
In reply to: Help with XML-parsingHow do you want to parse the xml file?
Parsing it with PHP is easy, if you can get a XML parser class. Try looking for free parser on the net, if you have more questions, post back.