HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
I'm thinking this belongs here instead...
Goto page Previous  1, 2
Post new topic   Reply to topic    HTML Help Forum Index -> General HTML
View previous topic :: View next topic  
Author Message
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Sat Aug 29, 2009 10:53 pm     Reply with quote

Those are more than likely in the <div class="Menuright"> or <div class="postinfo">. Check the sidebar page(s) to see how the php statement is configured. It should be one statement of code that will repeat for each entry and it will be inside a div tag. The opening ul tag follows the opening div tag and the php code will follow. There should also be an if and an else tag followed by the closing ul tag and the closing div tag.
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Sun Aug 30, 2009 7:03 am     Reply with quote

Okay here is the sidebar.php file:

<div id="sidebar">
<div id="sidebar-top">
<ul id="top-sidebarwidgets">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_top') ) : else : ?>
<h2>Promises from God</h2>
<div class="sidebar-top-box">

<div class="box-padding">
<p>John 20:30-31 - “Jesus’ disciples saw him do many other miraculous signs besides the ones recorded in this book. 31 But these are written so that you may believe* that Jesus is the Messiah, the Son of God, and that by believing in him you will have life.”</p>
<div style="clear:both;"></div>
</div>
</div>
<?php endif; ?>
</ul>
</div>
<div style="clear:both;"></div>
<div id="sidebar-left">
<ul id="l_sidebarwidgets">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_left') ) : else : ?>
<div class="Categ">
<h2>Recent Posts</h2>
<ul>
<?php get_archives('postbypost', 10); ?>
</ul>
<br/>
<h2>Categories</h2>
<ul>
<?php wp_list_cats('sort_column=name'); ?>
</ul>
<br/>
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<?php endif; ?>
</ul>
</div>
<div id="sidebar-right">
<ul id="r_sidebarwidgets">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_right') ) : else : ?>
<h2>Links</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '', FALSE, 'id', FALSE,
FALSE, -1, FALSE); ?>
<li><a href="http://www.justdreamweaver.com/blog/">Dreamweaver Blog</a>
</ul>
<br />
<h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li>
<?php wp_loginout(); ?>
</li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
<br />
<?php get_calendar(); ?>
<?php endif; ?>
</ul>
</div>
</div>
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Sun Aug 30, 2009 9:24 am     Reply with quote

Because the posted code for the page was deleted, I can't really see what is where. All the coding looks correct except for this
Code:
<h2>Links</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '', FALSE, 'id', FALSE,
FALSE, -1, FALSE); ?>
<li><a href="http://www.justdreamweaver.com/blog/">Dreamweaver Blog</a>
</ul>
<br />

If php is inserting opening and closing li tags then this link should not have an li in front of it.
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Sun Aug 30, 2009 1:12 pm     Reply with quote

Sorry about that, here is the code for the header.php as well:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />

WEBSITE META DATA HERE (I.E. TAGS, KEYWORDS, ETC.)

<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<!-- leave this for stats please -->
<link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/favicon.ico" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?>
<style type="text/css" media="screen">
<!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); -->
</style>
</head>
<body>

<div id="headerwrap">
<div id="headerbg">
<div id="header">
<h1><a href="<?php echo get_settings('home'); ?>/">
<?php bloginfo('name'); ?>
</a></h1>
<p class="tagline">
<?php bloginfo('description'); ?>
</p>
<div class="Menu">

<div class="Menuright">
<ul>
<ul>
<li><a href="<?php echo get_option('home'); ?>/">Kingdom Horizon</a></li>

<?php wp_list_pages('title_li=&depth=1'); ?>

</ul>
</ul>
</div>
</div>
<div id="rssfeeds">
<p><a href="<?php bloginfo_rss('rss2_url'); ?>">Subscribe to Kingdom Horizon</a></p>
</div>
<div class="search">
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" value="To search, type and hit enter" name="s" id="s" onfocus="if (this.value == 'To search, type and hit enter') {this.value = '';}" onblur="if (this.value == '') {this.value = 'To search, type and hit enter';}"/>
</form>
</div>
</div>
</div>
</div>
<div id="wrap">
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Sun Aug 30, 2009 1:14 pm     Reply with quote

Here is the source for the website:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<title>Kingdom Horizon - Christian community focused on Jesus and the Bible</title>
<meta name="Keywords" content="About the Bible, Christian community, Christian living, Christian life, Christian church, Christian faith, the Bible, Bible study, Jesus Christ, Holy Spirit, Jesus, Christ, God, Bible, Christians, church, news, scripture, religion, truth, trinity, salvation" />
<meta name="Description" content="A Christian community seeking to know more about God and about Jesus in our culture through Christian faith, the Christian life and the Bible" />
<meta name="author" content="jesseatkingdomhorizon.com" />
<meta name="generator" content="WordPress 2.8.4" />
<!-- leave this for stats please -->
<link rel="shortcut icon" href="http://www.kingdomhorizon.com/wp-content/themes/soulvision/favicon.ico" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.kingdomhorizon.com/feed/" />
<link rel="alternate" type="text/xml" title="RSS .92" href="http://www.kingdomhorizon.com/feed/rss/" />

<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://www.kingdomhorizon.com/feed/atom/" />
<link rel="pingback" href="http://www.kingdomhorizon.com/xmlrpc.php" />
<link rel='archives' title='August 2009' href='http://www.kingdomhorizon.com/2009/08/' />
<link rel='archives' title='July 2009' href='http://www.kingdomhorizon.com/2009/07/' />
<link rel='archives' title='June 2009' href='http://www.kingdomhorizon.com/2009/06/' />
<link rel='stylesheet' id='wp-polls-css' href='http://www.kingdomhorizon.com/wp-content/plugins/wp-polls/polls-css.css?ver=2.50' type='text/css' media='all' />
<script type='text/javascript' src='http://www.kingdomhorizon.com/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type='text/javascript' src='http://www.kingdomhorizon.com/wp-content/plugins/google-analyticator/external-tracking.min.js?ver=5.3.1'></script>
<link rel='index' title='Kingdom Horizon' href='http://www.kingdomhorizon.com' />
<!-- Google Analytics Tracking by Google Analyticator 5.3.1: http://plugins.spiralwebconsulting.com/analyticator.html -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>

<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9609807-1");
pageTracker._initData();
pageTracker._trackPageview();
} catch(err) {}</script>
<script type="text/javascript">
var analyticsFileTypes = [''];
var analyticsEventTracking = 'enabled';
</script>
<!-- Meta Manager Start -->
<meta name="verify-v1" content="iVn2i0g3lvvfPfDoUzzT84udY8lkVAu4sI8ouvoB2v0=" /> <!-- Meta Manager End -->
<style type="text/css">
.wp-polls .pollbar {
margin: 1px;
font-size: 6px;
line-height: 8px;
height: 8px;
background-image: url('http://www.kingdomhorizon.com/wp-content/plugins/wp-polls/images/default/pollbg.gif');
border: 1px solid #c8c8c8;
}
</style>

<!-- Protected by WP-SpamFree v2.1.0.7 :: JS BEGIN -->

<script type="text/javascript" src="http://www.kingdomhorizon.com/wp-content/plugins/wp-spamfree/js/wpsf-js.php"></script>
<!-- Protected by WP-SpamFree v2.1.0.7 :: JS END -->

<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<style type="text/css" media="screen">
<!-- @import url( http://www.kingdomhorizon.com/wp-content/themes/soulvision/style.css ); -->
</style>
</head>
<body>

<div id="headerwrap">
<div id="headerbg">
<div id="header">

<h1><a href="http://www.kingdomhorizon.com/">
Kingdom Horizon </a></h1>
<p class="tagline">
A Christian community focused on Jesus, the Bible and Christian living. </p>
<div class="Menu">

<div class="Menuright">
<ul>
<ul>

<li><a href="http://www.kingdomhorizon.com/">Kingdom Horizon</a></li>

<li class="page_item page-item-2"><a href="http://www.kingdomhorizon.com/about/" title="&lt;b&gt;About&lt;/b&gt;"><b>About</b></a></li>
<li class="page_item page-item-11"><a href="http://www.kingdomhorizon.com/contact/" title="&lt;b&gt;Contact&lt;/b&gt;"><b>Contact</b></a></li>

</ul>
</ul>
</div>
</div>
<div id="rssfeeds">

<p><a href="http://www.kingdomhorizon.com/feed/">Subscribe to Kingdom Horizon</a></p>
</div>
<div class="search">
<form id="searchform" method="get" action="/index.php">
<input type="text" value="To search, type and hit enter" name="s" id="s" onfocus="if (this.value == 'To search, type and hit enter') {this.value = '';}" onblur="if (this.value == '') {this.value = 'To search, type and hit enter';}"/>
</form>
</div>
</div>

</div>
</div>
<div id="wrap">


<div id="content">
<div class="postwrap">
<div class="post" id="post-339" style="padding-bottom: 40px;">
<div class="posthead">
<h1><a title="Permanent Link to Did Jesus Really Exist?" href="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/" rel="bookmark">
Did Jesus Really Exist? </a></h1>

<small class="postauthor">Posted by
Jesse <a class="post-edit-link" href="http://www.kingdomhorizon.com/wp-admin/post.php?action=edit&amp;post=339" title="Edit post">Edit</a> </small>
<p class="postdate"> <small class="month">
Aug </small> <small class="day">
26 </small> </p>
</div>

<div class="postcontent">
<p>Socrates, Plato, Aristotle – three of the most brilliant minds the world has ever known. Socrates taught Plato. Plato taught Aristotle.<br />
We still refer to their teachings and use their philosophies in our every day lives (whether we realize or not).<br />
Everybody knows the names of these three men.<br />
But what if I told you they never existed? [...]</p>
</div>
<div class="postinfo">

<ul>
<li class="postcomments">
<a href="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/#comments" title="Comment on Did Jesus Really Exist?">1 Comment</a> </li>
<li class="postcat">Filed under:
<a href="http://www.kingdomhorizon.com/category/about-jesus/" title="View all posts in About Jesus" rel="category tag">About Jesus</a> </li></ul><div class="clearer"></div>
</div>
</div>
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/"
dc:identifier="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/"
dc:title="Did Jesus Really Exist?"
trackback:ping="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/trackback/" />
</rdf:RDF>-->

<div class="clearer"></div>
<div class="post" id="post-315" style="padding-bottom: 40px;">
<div class="posthead">
<h1><a title="Permanent Link to FEAR" href="http://www.kingdomhorizon.com/2009/08/fear/" rel="bookmark">
FEAR </a></h1>
<small class="postauthor">Posted by
Jesse <a class="post-edit-link" href="http://www.kingdomhorizon.com/wp-admin/post.php?action=edit&amp;post=315" title="Edit post">Edit</a> </small>
<p class="postdate"> <small class="month">

Aug </small> <small class="day">
22 </small> </p>
</div>
<div class="postcontent">
<p>“The only thing we have to fear…Is fear itself!” – Franklin D. Roosevelt (First Inaugural Address)<br />

These words have made a lasting impact in American history and throughout the entire world. Spoken in a time of uncertainty and war, FDR said whatever he could to calm the hearts of the American people.<br />
But look closely at his [...]</p>
</div>
<div class="postinfo">
<ul>
<li class="postcomments">
<a href="http://www.kingdomhorizon.com/2009/08/fear/#comments" title="Comment on FEAR">1 Comment</a> </li>
<li class="postcat">Filed under:
<a href="http://www.kingdomhorizon.com/category/christianity-living/" title="View all posts in Christian Living" rel="category tag">Christian Living</a> </li></ul><div class="clearer"></div>

</div>
</div>
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.kingdomhorizon.com/2009/08/fear/"
dc:identifier="http://www.kingdomhorizon.com/2009/08/fear/"
dc:title="FEAR"
trackback:ping="http://www.kingdomhorizon.com/2009/08/fear/trackback/" />
</rdf:RDF>-->
<div class="clearer"></div>
<div class="post" id="post-264" style="padding-bottom: 40px;">
<div class="posthead">
<h1><a title="Permanent Link to The IMPACT of Your Words" href="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/" rel="bookmark">
The IMPACT of Your Words </a></h1>

<small class="postauthor">Posted by
Jesse <a class="post-edit-link" href="http://www.kingdomhorizon.com/wp-admin/post.php?action=edit&amp;post=264" title="Edit post">Edit</a> </small>
<p class="postdate"> <small class="month">
Aug </small> <small class="day">
13 </small> </p>
</div>

<div class="postcontent">
<p>“Shoot first and ask questions later.”<br />
I’m sure most of you have heard of this cowboy-like phrase at least once in your lifetime – in a movie, at work or even from your own mouth.<br />
The point is that most people underestimate the impact of the words that come from their mouths. We’re told that words are [...]</p>
</div>
<div class="postinfo">

<ul>
<li class="postcomments">
<a href="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/#comments" title="Comment on The IMPACT of Your Words">2 Comments</a> </li>
<li class="postcat">Filed under:
<a href="http://www.kingdomhorizon.com/category/christianity-living/" title="View all posts in Christian Living" rel="category tag">Christian Living</a>, <a href="http://www.kingdomhorizon.com/category/shooting-the-breeze/" title="View all posts in Shooting the Breeze" rel="category tag">Shooting the Breeze</a> </li></ul><div class="clearer"></div>
</div>
</div>

<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/"
dc:identifier="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/"
dc:title="The IMPACT of Your Words"
trackback:ping="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/trackback/" />
</rdf:RDF>-->
<div class="clearer"></div>
<div class="post" id="post-258" style="padding-bottom: 40px;">
<div class="posthead">
<h1><a title="Permanent Link to Are You Listening?" href="http://www.kingdomhorizon.com/2009/08/are-you-listening/" rel="bookmark">
Are You Listening? </a></h1>
<small class="postauthor">Posted by
Jesse <a class="post-edit-link" href="http://www.kingdomhorizon.com/wp-admin/post.php?action=edit&amp;post=258" title="Edit post">Edit</a> </small>

<p class="postdate"> <small class="month">
Aug </small> <small class="day">
6 </small> </p>
</div>
<div class="postcontent">
<p>Imagine this…<br />

You are in need of some sound advice and solid guidance for certain obstacles facing you in your life. You turn to one of the most trusted persons in your life – your father. You give him a call one evening knowing he is the one person who will truly listen to your cares [...]</p>
</div>
<div class="postinfo">
<ul>
<li class="postcomments">
<a href="http://www.kingdomhorizon.com/2009/08/are-you-listening/#comments" title="Comment on Are You Listening?">1 Comment</a> </li>
<li class="postcat">Filed under:
<a href="http://www.kingdomhorizon.com/category/about-god/" title="View all posts in About God" rel="category tag">About God</a>, <a href="http://www.kingdomhorizon.com/category/christianity-living/" title="View all posts in Christian Living" rel="category tag">Christian Living</a> </li></ul><div class="clearer"></div>

</div>
</div>
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.kingdomhorizon.com/2009/08/are-you-listening/"
dc:identifier="http://www.kingdomhorizon.com/2009/08/are-you-listening/"
dc:title="Are You Listening?"
trackback:ping="http://www.kingdomhorizon.com/2009/08/are-you-listening/trackback/" />
</rdf:RDF>-->
<div class="clearer"></div>
<div class="post" id="post-225" style="padding-bottom: 40px;">
<div class="posthead">
<h1><a title="Permanent Link to Where Is Your Bible?" href="http://www.kingdomhorizon.com/2009/07/where-is-your-bible/" rel="bookmark">
Where Is Your Bible? </a></h1>

<small class="postauthor">Posted by
Jesse <a class="post-edit-link" href="http://www.kingdomhorizon.com/wp-admin/post.php?action=edit&amp;post=225" title="Edit post">Edit</a> </small>
<p class="postdate"> <small class="month">
Jul </small> <small class="day">
29 </small> </p>
</div>

<div class="postcontent">
<p>It’s Monday and you’re exhausted after a long day’s work.<br />
You plop down into your favorite recliner – remote in hand.<br />
After grabbing something to eat, flipping through hundreds of channels (or websites), you find that time has passed you by – time for bed.<br />
You need to get your sleep so that you can continue your routine [...]</p>

</div>
<div class="postinfo">
<ul>
<li class="postcomments">
<a href="http://www.kingdomhorizon.com/2009/07/where-is-your-bible/#comments" title="Comment on Where Is Your Bible?">1 Comment</a> </li>
<li class="postcat">Filed under:
<a href="http://www.kingdomhorizon.com/category/about-god/" title="View all posts in About God" rel="category tag">About God</a>, <a href="http://www.kingdomhorizon.com/category/christianity-living/" title="View all posts in Christian Living" rel="category tag">Christian Living</a> </li></ul><div class="clearer"></div>

</div>
</div>
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.kingdomhorizon.com/2009/07/where-is-your-bible/"
dc:identifier="http://www.kingdomhorizon.com/2009/07/where-is-your-bible/"
dc:title="Where Is Your Bible?"
trackback:ping="http://www.kingdomhorizon.com/2009/07/where-is-your-bible/trackback/" />
</rdf:RDF>-->
<div class="clearer"></div>
<div class="Nav">
<a href="http://www.kingdomhorizon.com/page/2/" >View more posts &raquo;</a> </div>
</div>
<div id="sidebar">

<div id="sidebar-top">
<ul id="top-sidebarwidgets">
<h2>Promises from God</h2>
<div class="sidebar-top-box">

<div class="box-padding">
<p>John 20:30-31 - “Jesus’ disciples saw him do many other miraculous signs besides the ones recorded in this book. But these are written so that you may believe* that Jesus is the Messiah, the Son of God, and that by believing in him you will have life.”</p>
<div style="clear:both;"></div>
</div>

</div>
</ul>
</div>
<div style="clear:both;"></div>
<div id="sidebar-left">
<ul id="l_sidebarwidgets">
<h2>Recent Comments</h2> <ul id="recentcomments"><li class="recentcomments">Rada on <a href="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/comment-page-1/#comment-25">Did Jesus Really Exist?</a></li><li class="recentcomments">Me on <a href="http://www.kingdomhorizon.com/2009/08/fear/comment-page-1/#comment-24">FEAR</a></li><li class="recentcomments">Vadim on <a href="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/comment-page-1/#comment-23">The IMPACT of Your Words</a></li><li class="recentcomments">Zech Stake on <a href="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/comment-page-1/#comment-22">The IMPACT of Your Words</a></li><li class="recentcomments">Mariya on <a href="http://www.kingdomhorizon.com/2009/08/are-you-listening/comment-page-1/#comment-21">Are You Listening?</a></li></ul>

<h2>Recent Articles</h2> <ul>
<li><a href="http://www.kingdomhorizon.com/2009/08/did-jesus-really-exist/" title="Did Jesus Really Exist?">Did Jesus Really Exist? </a></li>
<li><a href="http://www.kingdomhorizon.com/2009/08/fear/" title="FEAR">FEAR </a></li>
<li><a href="http://www.kingdomhorizon.com/2009/08/the-impact-of-your-words/" title="The IMPACT of Your Words">The IMPACT of Your Words </a></li>
<li><a href="http://www.kingdomhorizon.com/2009/08/are-you-listening/" title="Are You Listening?">Are You Listening? </a></li>
</ul>

<h2>Categories</h2> <ul>
<li class="cat-item cat-item-6"><a href="http://www.kingdomhorizon.com/category/about-god/" title="Christian blogs pertaining the attributes and nature of God. Here you will read about how God works, His personality and His work in the Bible and in the Christian community in the world today. ">About God</a>
</li>
<li class="cat-item cat-item-58"><a href="http://www.kingdomhorizon.com/category/about-jesus/" title="Christian blogs pertaining to the works and life of Jesus Christ. Here you will read about Jesus, His message and ultimate sacrifice on the cross and resurrection.">About Jesus</a>
</li>
<li class="cat-item cat-item-1"><a href="http://www.kingdomhorizon.com/category/announcements/" title="Announcements in regards to anything related to the website and the author.">Announcements</a>
</li>
<li class="cat-item cat-item-5"><a href="http://www.kingdomhorizon.com/category/christianity-living/" title="Christian blogs pertaining to Christianity, Christian living, Christian faith and Christian devotionals. Read about what the Bible says about the Christian community and what it means to live a life of seeking God, knowing more about God and knowing more about Jesus Christ.">Christian Living</a>

</li>
<li class="cat-item cat-item-7"><a href="http://www.kingdomhorizon.com/category/shooting-the-breeze/" title="Christian blogs pertaining to anything off-topic.">Shooting the Breeze</a>
</li>
<li class="cat-item cat-item-29"><a href="http://www.kingdomhorizon.com/category/the-bible/" title="Christian blogs about the Bible and the books and authors found within its pages. Learn about how what was relevant to the people in the days of the Bible also pertains to the Christian community today. ">The Bible</a>
</li>
</ul>
<h2>A Shocking Message</h2><object type="application/x-shockwave-flash" width="215" height="180" data="http://www.youtube.com/v/AYsClDclvf0&rel=0"><param name="movie" value="http://www.youtube.com/v/AYsClDclvf0&rel=0" /><param name="wmode" value="transparent" /><param name="quality" value="high" /></object><h2>Archives</h2> <ul>
<li><a href='http://www.kingdomhorizon.com/2009/08/' title='August 2009'>August 2009</a></li>

<li><a href='http://www.kingdomhorizon.com/2009/07/' title='July 2009'>July 2009</a></li>
<li><a href='http://www.kingdomhorizon.com/2009/06/' title='June 2009'>June 2009</a></li>
</ul>
</ul>
</div>
<div id="sidebar-right">
<ul id="r_sidebarwidgets">
<h2><a class='rsswidget' href='http://www.cbn.com/cbnnews/shows/cwn/feed/' title='Syndicate this content'><img style='background:orange;color:white;border:none;' width='14' height='14' src='http://www.kingdomhorizon.com/wp-includes/images/rss.png' alt='RSS' /></a> <a class='rsswidget' href='http://www.cbn.com/cbnnews/shows/cwn/feed/' title='CBNNews.com Feeds'>Christian News</a></h2><ul><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/politics/2009/August/A-Look-at-Ted-Kennedys-Catholic-Faith/' title='Though Sen. Ted Kennedy did not talk much about his religion openly, the Kennedy's are known for their Catholic faith. [&hellip;]'>A Look at Ted Kennedy's Catholic Faith</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/world/2009/August/Muslims-Begin-Ramadan-Observance/' title='Ramadan occurs each year when the new moon is sighted in the ninth month of the Islamic calendar. This is the first time in 33 years that Ramadan has been celebrated in August. [&hellip;]'>Muslims Begin Month-long Ramadan Observance</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/world/2009/August/Missionaries-Steer-Clear-of-Honduras/' title='Honduras is usually a top destination for North American missions teams, but since the ouster of President Manuel Zelaya many are canceling their trips. [&hellip;]'>Political Crisis Affects Missions to Honduras</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/shows/cwn/2009/August/Christian-Nurse-Brings-Reconciliation-to-Philippines/' title='Shirlyn Macasarte can still vividly recall the day she was ambushed by more than 50 armed men in a remote Muslim area in southern Philippines. [&hellip;]'>Christian Nurse Brings Reconciliation to Philippines</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/world/2009/August/Missions-Group-Captures-Memories-in-Photos/' title='Every summer the group Adventures in Missions helps scores of U.S. Christians make missions trips. The teams come back with lots of memories - and photos. [&hellip;]'>Missions Group Captures Memories in Photos</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/shows/cwn/2009/August/Somali-Christian-Killed/' title='Somali Christian is shot dead near Kenyan border. Muslim extremists killed a convert from Islam they were monitoring. [&hellip;]'>Somali Man Killed for Converting to Christianity</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/us/2009/August/Grahams-Send-Condolences-to-Kennedy-Family/' title='Franklin Graham is another well-known minister mourning the loss of Sen. Edward Kennedy. [&hellip;]'>Grahams Send Condolences to Kennedy Family</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/us/2009/August/New-Details-Emerge-in-Christian-Convert-Case/' title='CBN News has new details on Rifqa Bary's story including a court petition with harsh claims against her family and an Ohio Muslim community. [&hellip;]'>New Details Emerge in Christian Convert Case</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/us/2009/August/Nowadays-God-Sports-Go-Hand-in-Hand/' title='From politicians to Hollywood stars, those in the national spotlight aren't always on their best behavior, but many athletes are changing that. [&hellip;]'>Nowadays God, Sports Go Hand in Hand</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/world/2009/August/S-Korea-May-Cut-Mideast-Missionary-Travel/' title='South Korea may begin scaling back on Christian missionaries' travel to the Middle East. [&hellip;]'>S. Korea May Cut Mideast Missionary Travel</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/world/2009/August/Bible-Art-Exhibit-Seen-as-Defacing/' title='A controversial art exhibit in Glasgow, Scotland, is causing a stir among Christians in the United Kingdom. [&hellip;]'>Bible 'Art' Exhibit Seen as Defacing</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/us/2009/August/Lutheran-Church-Protests-Gay-Clergy/' title='St. Timothy Church in Charleston, W.Va. has blocked out the word 'Lutheran' on the sign in front of its building in protest of the ELCA vote allowing the ordaining of gay clergy. [&hellip;]'>Church Drops 'Lutheran' in Protest of Gay Clergy</a></li><li><a class='rsswidget' href='http://www.cbn.com/cbnnews/world/2009/August/Lydia-Teera-Fighting-AIDS-With-Gods-Love/' title='Grief-stricken and parentless, Teera began a very personal journey of healing that eventually led her to reach out to people suffering with the disease. [&hellip;]'>An Orphan's Tale: Fighting AIDS with Love</a></li></ul><h2>Meta</h2> <ul>

<li><a href="http://www.kingdomhorizon.com/wp-admin/">Site Admin</a></li> <li><a href="http://www.kingdomhorizon.com/wp-login.php?action=logout&amp;_wpnonce=bbf4832b27">Log out</a></li>
<li><a href="http://www.kingdomhorizon.com/feed/" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://www.kingdomhorizon.com/comments/feed/" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
</ul>

<h2>Keywords</h2><div><a href='http://www.kingdomhorizon.com/tag/addiction/' class='tag-link-40' title='1 topic' rel="tag" style='font-size: 8pt;'>addiction</a>
<a href='http://www.kingdomhorizon.com/tag/bible/' class='tag-link-18' title='2 topics' rel="tag" style='font-size: 10.3333333333pt;'>Bible</a>
<a href='http://www.kingdomhorizon.com/tag/christian-living/' class='tag-link-24' title='5 topics' rel="tag" style='font-size: 17.3333333333pt;'>Christian living</a>
<a href='http://www.kingdomhorizon.com/tag/christianity-living/' class='tag-link-5' title='1 topic' rel="tag" style='font-size: 8pt;'>Christian Living</a>
<a href='http://www.kingdomhorizon.com/tag/debt/' class='tag-link-51' title='1 topic' rel="tag" style='font-size: 8pt;'>debt</a>
<a href='http://www.kingdomhorizon.com/tag/devil/' class='tag-link-33' title='1 topic' rel="tag" style='font-size: 8pt;'>devil</a>
<a href='http://www.kingdomhorizon.com/tag/diet/' class='tag-link-38' title='1 topic' rel="tag" style='font-size: 8pt;'>diet</a>
<a href='http://www.kingdomhorizon.com/tag/evangelism/' class='tag-link-45' title='2 topics' rel="tag" style='font-size: 10.3333333333pt;'>evangelism</a>

<a href='http://www.kingdomhorizon.com/tag/evil/' class='tag-link-34' title='2 topics' rel="tag" style='font-size: 10.3333333333pt;'>evil</a>
<a href='http://www.kingdomhorizon.com/tag/faith/' class='tag-link-10' title='1 topic' rel="tag" style='font-size: 8pt;'>faith</a>
<a href='http://www.kingdomhorizon.com/tag/fear/' class='tag-link-59' title='1 topic' rel="tag" style='font-size: 8pt;'>fear</a>
<a href='http://www.kingdomhorizon.com/tag/finances/' class='tag-link-50' title='1 topic' rel="tag" style='font-size: 8pt;'>finances</a>
<a href='http://www.kingdomhorizon.com/tag/food/' class='tag-link-37' title='1 topic' rel="tag" style='font-size: 8pt;'>food</a>
<a href='http://www.kingdomhorizon.com/tag/forgiveness/' class='tag-link-36' title='2 topics' rel="tag" style='font-size: 10.3333333333pt;'>forgiveness</a>
<a href='http://www.kingdomhorizon.com/tag/gifts/' class='tag-link-48' title='1 topic' rel="tag" style='font-size: 8pt;'>gifts</a>
<a href='http://www.kingdomhorizon.com/tag/god/' class='tag-link-65' title='7 topics' rel="tag" style='font-size: 22pt;'>god</a>
<a href='http://www.kingdomhorizon.com/tag/gods-joy/' class='tag-link-26' title='1 topic' rel="tag" style='font-size: 8pt;'>God's joy</a>

<a href='http://www.kingdomhorizon.com/tag/gods-word/' class='tag-link-19' title='1 topic' rel="tag" style='font-size: 8pt;'>God's Word</a>
<a href='http://www.kingdomhorizon.com/tag/humor/' class='tag-link-27' title='1 topic' rel="tag" style='font-size: 8pt;'>humor</a>
<a href='http://www.kingdomhorizon.com/tag/jesus/' class='tag-link-53' title='3 topics' rel="tag" style='font-size: 12.6666666667pt;'>jesus</a>
<a href='http://www.kingdomhorizon.com/tag/joy/' class='tag-link-25' title='1 topic' rel="tag" style='font-size: 8pt;'>joy</a>
<a href='http://www.kingdomhorizon.com/tag/knowing-god/' class='tag-link-21' title='1 topic' rel="tag" style='font-size: 8pt;'>knowing God</a>
<a href='http://www.kingdomhorizon.com/tag/knowing-jesus/' class='tag-link-22' title='1 topic' rel="tag" style='font-size: 8pt;'>knowing Jesus</a>
<a href='http://www.kingdomhorizon.com/tag/laughter/' class='tag-link-28' title='1 topic' rel="tag" style='font-size: 8pt;'>laughter</a>
<a href='http://www.kingdomhorizon.com/tag/life/' class='tag-link-11' title='2 topics' rel="tag" style='font-size: 10.3333333333pt;'>life</a>
<a href='http://www.kingdomhorizon.com/tag/listening/' class='tag-link-17' title='1 topic' rel="tag" style='font-size: 8pt;'>listening</a>

<a href='http://www.kingdomhorizon.com/tag/listening-to-god/' class='tag-link-16' title='1 topic' rel="tag" style='font-size: 8pt;'>listening to God</a>
<a href='http://www.kingdomhorizon.com/tag/living/' class='tag-link-46' title='1 topic' rel="tag" style='font-size: 8pt;'>living</a>
<a href='http://www.kingdomhorizon.com/tag/old-testament/' class='tag-link-31' title='1 topic' rel="tag" style='font-size: 8pt;'>Old Testament</a>
<a href='http://www.kingdomhorizon.com/tag/power/' class='tag-link-9' title='1 topic' rel="tag" style='font-size: 8pt;'>power</a>
<a href='http://www.kingdomhorizon.com/tag/prayer/' class='tag-link-14' title='1 topic' rel="tag" style='font-size: 8pt;'>prayer</a>
<a href='http://www.kingdomhorizon.com/tag/praying-to-god/' class='tag-link-15' title='1 topic' rel="tag" style='font-size: 8pt;'>praying to God</a>
<a href='http://www.kingdomhorizon.com/tag/pride/' class='tag-link-32' title='1 topic' rel="tag" style='font-size: 8pt;'>pride</a>
<a href='http://www.kingdomhorizon.com/tag/salvation/' class='tag-link-49' title='1 topic' rel="tag" style='font-size: 8pt;'>salvation</a>
<a href='http://www.kingdomhorizon.com/tag/sin/' class='tag-link-35' title='2 topics' rel="tag" style='font-size: 10.3333333333pt;'>sin</a>

<a href='http://www.kingdomhorizon.com/tag/society/' class='tag-link-41' title='1 topic' rel="tag" style='font-size: 8pt;'>society</a>
<a href='http://www.kingdomhorizon.com/tag/talents/' class='tag-link-47' title='1 topic' rel="tag" style='font-size: 8pt;'>talents</a>
<a href='http://www.kingdomhorizon.com/tag/temple-of-god/' class='tag-link-39' title='1 topic' rel="tag" style='font-size: 8pt;'>temple of God</a>
<a href='http://www.kingdomhorizon.com/tag/the-bible/' class='tag-link-29' title='1 topic' rel="tag" style='font-size: 8pt;'>The Bible</a>
<a href='http://www.kingdomhorizon.com/tag/wisdom/' class='tag-link-13' title='1 topic' rel="tag" style='font-size: 8pt;'>wisdom</a>
<a href='http://www.kingdomhorizon.com/tag/witnessing/' class='tag-link-44' title='1 topic' rel="tag" style='font-size: 8pt;'>witnessing</a>
<a href='http://www.kingdomhorizon.com/tag/words/' class='tag-link-12' title='1 topic' rel="tag" style='font-size: 8pt;'>words</a>
<a href='http://www.kingdomhorizon.com/tag/work/' class='tag-link-42' title='1 topic' rel="tag" style='font-size: 8pt;'>work</a>
<a href='http://www.kingdomhorizon.com/tag/workplace/' class='tag-link-43' title='1 topic' rel="tag" style='font-size: 8pt;'>workplace</a>

<a href='http://www.kingdomhorizon.com/tag/zephaniah/' class='tag-link-30' title='1 topic' rel="tag" style='font-size: 8pt;'>zephaniah</a></div>
</ul>
</div>
</div>

</div>
<!-- begin footer -->

<div id="footer"> &copy; 2008 <a href="http://www.kingdomhorizon.com/">
Kingdom Horizon</a>. <a href="http://www.wordpress.org/">WordPress</a>. <a href="http://www.hostgator.com/">Host Gator</a>. <a href="http://www.godaddy.com/">GoDaddy</a>

<div><div style="display:none;"></div></div>

<div id="credit"></div>

</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9609807-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body></html>
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Sun Aug 30, 2009 4:02 pm     Reply with quote

I'll take a closer look later tonight.

In the future when posting code, paste the code, highlight all the code and click the code button at the top of the posting window. Makes it easier to read.
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Mon Aug 31, 2009 8:56 am     Reply with quote

Thanks for doing that man I really appreciate it. This is very much out of my realm of understanding.
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Mon Aug 31, 2009 2:03 pm     Reply with quote

I haven't gotten to it yet, I got preoccupied by some honey-do's and had to work today. If I don't have you an answer soon maybe someone else will step in to help.
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Wed Sep 02, 2009 5:46 am     Reply with quote

One of the biggest problems is your sidebar does not jive with what is being rendered.
Your posted sidebar code
Code:
<div id="sidebar-left">
    <ul id="l_sidebarwidgets">
      <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_left') ) : else : ?>
      <div class="Categ">
        <h2>Recent Posts</h2>
        <ul>
          <?php get_archives('postbypost', 10); ?>
        </ul>
        <br/>
        <h2>Categories</h2>
        <ul>
          <?php wp_list_cats('sort_column=name'); ?>
        </ul>
        <br/>
        <h2>Archives</h2>
        <ul>
          <?php wp_get_archives('type=monthly'); ?>
        </ul>
      </div>
      <?php endif; ?>
    </ul>
  </div>


Something else has been inserted (widgets maybe) to get Recent Comments and Recent Articles both of which are not defined in the sidebar code you posted and this is where the errors are occuring.
Have you added widgets or how did you change the sidebar code to get Articles and Comments instead of Recent Post and Archives?
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Wed Sep 02, 2009 3:12 pm     Reply with quote

Well after weeks of frustration with this theme I've decided to make the switch to something that came with little-to-no errors.

The only error now is just the HTML Validation tool detecting widgets (i.e. RSS sidebar widgets).

I view the source code on the main page (which gives me the code for the whole website, and I was wondering how I can make the corrections to the HTML in the source code and have apply those changes through the .php files.

The .php files for some reason don't have any indication of the widgets going on in the sidebar.
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Wed Sep 02, 2009 5:17 pm     Reply with quote

That's all done within the admin section. What widget are you using for the rss feed?
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Wed Sep 02, 2009 5:28 pm     Reply with quote

Whatever widget automatically comes with Wordpress. I never downloaded a specific widget for RSS.
sticks464



Joined: 31 Dec 2006
Posts: 2311

PostPosted: Wed Sep 02, 2009 5:45 pm     Reply with quote

Have a look at this one
JDawggS316



Joined: 28 Aug 2009
Posts: 20

PostPosted: Thu Sep 03, 2009 7:09 am     Reply with quote

I will definitely look into this.

Seeing as I'm not the greatest with code I hope installation into the .php will be easy Very Happy
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> General HTML All times are GMT - 8 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
DARFUR
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial