graciedesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tried different ways to remove index.php and nothing is workingThe only problem I have is that CPanel otherwise known as Control Panel isn’t supported through godaddy.com and there’s only MySQL. Is there any way I could edit or create a .htaccess file through MySQL? Can I also import that type of file through it as well?
Forum: Themes and Templates
In reply to: How to remove the second sidebar in child themeSorry, this is the link:
Forum: Themes and Templates
In reply to: Theme Not Showing Up Properly On My SiteOkay, I fixed some of those errors except for two of them as well as the CSS code but my layout is still overlapping. What am I going to do?
This is the code I have for Date Posted.
<?php the_time(‘F, jS, Y’) ?>
And this is the code I have for Where.
<?php the_category(‘, ‘) ?>
How am I going to add links to the date and category?
Forum: Themes and Templates
In reply to: Theme Not Showing Up Properly On My SiteOkay, so I fixed my header page, linked my css style sheet and the colors are showing up on my site. But, unfortunately, the layout is out of shape and the logo image I created is not showing up. I set the header on top with the logo image on the left and the navigation links on the right, the main content goes on the left, the sidebar is on the right and the footer is on the bottom. How am I going to fix these things and get my logo image to show up?
You saw what I first posted above before.
Forum: Themes and Templates
In reply to: Theme Not Showing Up Properly On My SiteWell, sorry to post again but this is what I have for the style.css when I made a static HTML page.
Is there anything I need to fix here?
Forum: Themes and Templates
In reply to: Theme Not Showing Up Properly On My SiteOkay.
Forum: Themes and Templates
In reply to: Theme Not Showing Up Properly On My SiteDo I put this on the header.php page?
Forum: Themes and Templates
In reply to: functions.php Error On My WordPress themeYup.
Forum: Themes and Templates
In reply to: functions.php Error On My WordPress themeOkay, thanks.
Forum: Installing WordPress
In reply to: Problems Installing WordPress 3.3.2@loughcorrib-I think it had something to do with the database. I didn’t set up everything correctly but everything is good now. I was able to install everything thanks to shardulpandey’s instructions.
Forum: Installing WordPress
In reply to: Problems Installing WordPress 3.3.2I did and I guess it seems like they want me to install WordPress through their site as well which may cost a lot.
Forum: Installing WordPress
In reply to: Problems Installing WordPress 3.3.2Actually, I manually installed version 3.3.2 to my godaddy.com account and everything is still not appearing, even though I have 3.3.2 downloaded. I guess I probably typed in the wrong root in my FTP program.
Forum: Installing WordPress
In reply to: Problems Installing WordPress 3.3.2Everything is correct in my wp-config.php file and I completed the install process but why do I keep getting these error messages?
Sorry to post here again but here’s the code for my index.php.
<?php get_header(); ?>
<div id=”main”>
<div id=”container”>
<div id=”content”><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?>>
<h2>“><?php the_title(); ?></h2>
<?php the_content(); ?><div class=”postInfo”>
-
<li class=”date”>Date Posted:<?php the_time(‘F jS Y’); ?>
<li class=”category”>Where:<?php the_category(‘,’); ?></div>
</div><?php endwhile; ?>
<div class=”pagination”>
<p class=”prev”><?php next_posts_link(‘<Previous’): ?></p>
<p class=”next”><?php previoust_posts_link(‘Next>’): ?></p>
</div><?php else : ?>
<div class=”nothing”>
<h1>Nothing Found</h1>
<p>Sorry, but the page you are looking for isnt here.</p>
<p>“>Return to homepage</p>
</div><?php endif; ?>
</div><!–#content–>
<?php get_sidebar(): ?>
</div><!–#container–>
<?php get_footer(); ?>
</div><!–#main–>
Are there any changes that I need to make in order for it to run better?
This is the code I made for line 22-25 with index.php in Dreamweaver:
However it looks like I had a typo error below line 23.