seo company

Monday, December 28, 2009
Text Size

Integrate Wordpress Into Existing Site Tutorial

* Update * 01/01/2010 We have produced a video tutorial on how to integrate Wordpress into your website in less than 10 minutes that you can feel free to review after reading the written write up below.

Many of our readers have requested that we provide a detailed write up of how to integrate a Wordpress blog into any existing website. We are going to show you step by step how to get a working Wordpress installation seamlessly integrated into your current website. It doesn’t matter if you are using Joomla, Drupal, or straight HTML, this write up will work for your website too!

Okay lets start by talking about some preparations you need to make. We need to make sure that you have installed Wordpress on your host. For the purposes of this tutorial we will install Wordpress under the /blog directory. So we are clear your Wordpress installation should be found at www.yourwebsite.com/blog. This should be a standard Wordpress install, nothing special is required from the installation standpoint.

Once you can see the default Wordpress blog on your site at www.yourwebsite.com/blog, then we can begin the customization, excited yet?

default Wordpress Blog

wordpress ftp filesFirst thing we want to do is log into the admin area and make sure you have the Wordpress theme set to the default theme. Now pull down all the .PHP files we are going to edit from the host. Navigate through your favorite FTP program to the following location: /yourwebsite.com/blog/wp-content/themes/default/. From here you will want to move the following file to your desktop (or whichever folder you will use to house the files while you edit them):

  • header.php
  • index.php
  • footer.php
  • single.php
  • comments.php

Now lets make sure you have a page setup on your site for the blog. This will be the “template” page you will use during your customization. If using HTML just make sure you have a page that you can actually visit for the blog at www.yoursite.com/blog. Leave the space where the blog content will go empty except for the text “blog content here”. Also make sure you have a space for your sidebar and write the text “sidebar here” so you can find it later as we edit the Wordpress theme with this template. Below is a graphic example of what the blog “template” page could look like:

blog template page

Now right click on your template page and view the source. From the view source page press Control+A to highlight all the text. Now press Control+C to copy the text. Open up a blank HTML file in your HTML/PHP editor (we will use Dreamweaver from now on for this tutorial). Go to the code page of your editor and delete everything so you have a blank canvass. Now press Control+V to paste the details of your template page into this new document.

EDIT THE HEADER.PHP FILE

1. Open up the header.php file in Dreamweaver. In the code you will want to delete everything after the initial

<?php /** * @package WordPress *@subpackage Default_Theme */ ?>

Use the screen shot below if your unsure:

blog template page

2. Now go to your template you copied earlier and view the source. You should copy everything over exactly as it is. Start at the top and copy everything down to the area just before where your main body content for the blog will start. This will vary depending on your particular website layout, but it will work regardless. Once you have copied everything you consider to be the “header” from your template paste it into the header.php file. You can delete the title meta tag you copied from your template and replace with the the following one that you can find in the original header file:

<title><?php wp_title(‘&laquo;’, true, ‘right’); ?> <?php bloginfo(‘name’); ?></title>

In addition you can paste the following code from the original header.php code and place it in the meta area of your copied template code:

<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />


3. Since the blog is located in a sub directory we highly recommend making sure you input the full URL address to the files specified in all the meta tag info of your header.php file. For example

<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />

would become

<link rel=”pingback” href=”http://www.burnseo.com/blog/xmlrpc.php” />

Once you have done this for all the meta URL’s, you can save this file and transfer it to your host Copy over the header.php file in the default theme folder we discussed earlier.

EDIT THE INDEX.PHP FILE

1. Open the index.php file and delete everything after the inital PHP call for the header (leave that intact). Go back to your template code and copy EVERYTHING directly after the header area you copied ealier and UP TO the footer. Take this code and paste into the index.php file after the initial PHP header call. Now search your new index.php file and find the content filler text on your template that we suggest earlier. We used the text “blog content here”. Find that text and in it’s place paste the following code:

<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<h2><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></a></h2>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small>

<div>
<?php the_content(‘Read the rest of this entry &raquo;’); ?>
</div>

<p><?php the_tags(‘Tags: ‘, ‘, ‘, ‘<br />’); ?> Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments &#187;’, ‘1 Comment &#187;’, ‘% Comments &#187;’); ?></p>
</div>

<?php endwhile; ?>

<div>
<div><?php next_posts_link(‘&laquo; Older Entries’) ?></div>
<div><?php previous_posts_link(‘Newer Entries &raquo;’) ?></div>
</div>

<?php else : ?>

<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn’t here.</p>
<?php get_search_form(); ?>

<?php endif; ?>

Good job your almost halfway done!

2. Now make sure you go to the very end of the code of the index.php file and paste the following code as the LAST LINE OF CODE for the index.php file:

<?php get_footer(); ?>

3. The last thing you will have to do with the index.php file is find the filler text you used for your sidebar. Remember that we used the text “sidebar here”. Find that text and in it’s place past the following code:

<?php get_sidebar(); ?>

you might have to place a div or paragraph tag around this one and center it or align it left or right depending on your taste.

EDIT THE FOOTER.PHP FILE

1. Open the footer.php file. You can delete everything AFTER the initial PHP call. Go back to your template and copy everything after your index text down to the last code on this page. Paste this code after the initial PHP call in the footer.php file. before the /body tag you will want to insert the following code:

<?php wp_footer(); ?>

if you would like to support Wordpress or want to display the feed information in your footer you can paste the following code anywhere appropriate in your footer file (it’s not required to work so feel free to not include this if you don’t want to):

<?php bloginfo(‘name’); ?> is proudly powered by
<a href=”http://wordpress.org/”>WordPress</a>
<br /><a href=”<?php bloginfo(‘rss2_url’); ?>”>Entries (RSS)</a>
and <a href=”<?php bloginfo(‘comments_rss2_url’); ?>”>Comments (RSS)</a>.
<!– <?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. –>

Okay now you have the basic blog customized to your website! you can overwrite the header.php, index.php and footer.php files in the default wordpress theme folder on your host. If you refresh the page you should see your working blog integrated with your site design! Great work, but not quite done yet…

EDIT SINGLE.PHP FILE

You want to copy everything from your new index.php into the single.php file. Highlight the Wordpress code we told you to paste into the index.php file earlier and delete it. in it’s place replace it with this new code:

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<div>
<div><?php previous_post_link(‘&laquo; %link’) ?></div>
<div><?php next_post_link(‘%link &raquo;’) ?></div>
</div>

<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2>

<div>
<?php the_content(‘<p>Read the rest of this entry &raquo;</p>’); ?>

<?php wp_link_pages(array(‘before’ => ‘<p><strong>Pages:</strong> ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
<?php the_tags( ‘<p>Tags: ‘, ‘, ‘, ‘</p>’); ?>

<p>
<small>
This entry was posted
<?php /* This is commented, because it requires a little adjusting sometimes.
You’ll need to download this plugin, and follow the instructions:
http://binarybonsai.com/wordpress/time-since/ */
/* $entry_datetime = abs(strtotime($post->post_date) – (60*120)); echo time_since($entry_datetime); echo ‘ ago’; */ ?>
on <?php the_time(‘l, F jS, Y’) ?> at <?php the_time() ?>
and is filed under <?php the_category(‘, ‘) ?>.
You can follow any responses to this entry through the <?php post_comments_feed_link(‘RSS 2.0′); ?> feed.

<?php if ( comments_open() && pings_open() ) {
// Both Comments and Pings are open ?>
You can <a href=”#respond”>leave a response</a>, or <a href=”<?php trackback_url(); ?>” rel=”trackback”>trackback</a> from your own site.

<?php } elseif ( !comments_open() && pings_open() ) {
// Only Pings are Open ?>
Responses are currently closed, but you can <a href=”<?php trackback_url(); ?> ” rel=”trackback”>trackback</a> from your own site.

<?php } elseif ( comments_open() && !pings_open() ) {
// Comments are open, Pings are not ?>
You can skip to the end and leave a response. Pinging is currently not allowed.

<?php } elseif ( !comments_open() && !pings_open() ) {
// Neither Comments, nor Pings are open ?>
Both comments and pings are currently closed.

<?php } edit_post_link(‘Edit this entry’,”,’.'); ?>

</small>
</p>

</div>
</div>

<?php comments_template(); ?>

<?php endwhile; else: ?>

<p>Sorry, no posts matched your criteria.</p>

<?php endif; ?>

Keep the rest of the code in tact, you are only swapping out the main content code here. only replace the exact PHP code we told you to insert originally with this one. The last code should still be the call for the footer.php file as it is in the index.php file.

EDIT THE COMMENT.PHP FILE

Open the comment.php file and look for this line of code:

<p><textarea name=”comment” id=”comment” cols=”100%” rows=”10″ tabindex=”4″></textarea></p>

You will want to decrease the cols value to something lower than 100%. I suggest 75%-80% and see if that fits well with the site.

Now overwrite the single.php file and the comments.php file and go back and view an actual blog post on your site. It should look nice and pretty now.

At this point you have succesfully integrated a fully functional Wordpress blog into your website. It now looks and functions exactly as the rest of your site does. You can go into your Wordpress admin and install plugins and widgets to your hearts content!

if we missed anything or you have any other suggestions for future tutorials don’t hesistate to give us a suggestion! We welcome any feedback.

*12/02/2009 Edited the tutorial with code in the header.php that was causing a parse error. Also we highly recommend the use of SEO plugins to help with the meta tags once your blog is up and running. Happy blogging!


If you liked this Article, you might also like:

If you enjoyed this article, please enter your email address and get email updates on future posts!:

Share
  • oh this is very good information,thank you for the post.
  • Great tutorial! But it looks like a lot of work! How much do you charge??
    .-= Social Media SEO´s last blog ..Internet Marketing =-.
  • Great Tutorial. Definitely a good way to integrate wordress into your site design.
  • This is really a great tutorial, but I am a little bit confused about all this.

    I integrated wordpress blog as a subdirectory of my site, but I didn't followed all these steps. I simply downloaded wordpress from their site, extracted all files in a folder named "blog" and after that uploaded that folder on root of my site i.e at location "http://www.legitimatepaidsurveysonline.com/blog". I just edited config.php file to fill up the SQL database details and my blog is working fine.

    May I know is this the correct method or I am lacking something. Please give me advice for this.
  • Awesome tutorial! :) I don't think there have lot of work. I believe this is well defined tutorial with straight explanation. Thanks for sharing this nice post.
  • Stephen,

    Sounds like you installed Wordpress just fine. This tutorial is to make the default template look like the rest of your website. It helps your user experience so when they are on the blog it looks just like the rest of your site.
  • Social Media SEO,

    It's not that much work :) if you need some help just email info@burnseo.com and we'll be glad to help walk you through it.
  • Dan
    Hi

    I've tried following everything exactly, but end up with a blank page when i replace the modded files...

    the only thing I can think of was that I couldnt work out what the exact url should be for the :

    <link rel="stylesheet" href="" type="text/css" media="screen" />

    line ...

    What do you think i'm doing wrong?

    Thx!
  • Dan
    obviously there was a ?php statement inside the " " for href... (blog removed it)
  • Dan,

    sent you an email. Is it the /blog at the site in your URL on your name? It looks like that one is working fine.
  • Explained in a easy to follow step by step instructions. Wordpress is really a highly SEO optimized platform and it will really boost web traffic. Thanks for the tutorial.
    .-= BlogSmith´s last blog ..Make Money Online Lesson-5- Submit To Blog Directories =-.
  • I recently came across your blog and have been reading along. I thought I would leave my first comment. Nice post!
  • I have read through your how to, this is somthing I feel I need to be able to do and promised this customer. I am a new to web work and getting my feet wet. I have went to host server and looked into the blog1(WP folder) see the index.php, wp-header.php, (2)comments, wp-comments-post.php and wp-commentsrss2.php. NO footer.php or single.php, I have looked in the sub directorys wp-content, and wp-includes and was unable to find the last 2 php files. Any help be appreciated.
    Thanks Steve
  • I found another link to your article (tad easier to read) re-read and located the files. I will come back and make 1st attemp at this.
    TY
  • Chris
    This i belief is going to be great by the time I am through because this is what I am looking for right now.
    I am confused here I don't really know how or where to put my url to replace this as the blog is intall on subdrectory.
    .<link rel=”stylesheet” href=”” type=”text/css” media=”screen” />
    Please help as this where I am now
  • should be something like:

    rel=”stylesheet” href=”http://www.yourwesbite.com/blog/wp-content/themes/default/style.css” type=”text/css” media=”screen”
  • Chris
    Thank you for your help that I have done.
    I am just fixed here "EDIT THE FOOTER.PHP FILE"
    ...copy everything after your INDEX TEXT down to the last code on this page.
    What do you mean by INDEX TEXT and where do I locate that on my template?
    Thank you for this great tutorial.
  • Hi there, thanks for this tutorial. It has been incredibly helpful as this is exactly what I am looking for.

    I wondered if you might be able to give me a bit of help. When I updated the header file it was looking fine. But since I changed the index file, I am having parsing errors on the following two lines;

    <!– by –>



    Thanks in advance for any help you can give,
    Graham
  • afro
    Hello, i've gone through the tutorial several times, and keep getting the same outcome.

    Parse error: syntax error, unexpected T_STRING in /home/fhlinux133/t/mywebsite.co.uk/user/htdocs/news/wp-content/themes/default/index.php on line 18

    I have been struggling for ages on this, if someone has a solution or would be prepared to have a quick look please get in touch and I'll give you access to have a look,

    Many thanks

    fro
  • Bernie
    I have the same problem. How was it solved?
    Thanks!
    + Bernie
  • @chris

    By everything after the index text what we mean is the remaining code that was left on the template file. You already copied the header and the index parts into the corresponding wordpress php files. For the footer you just copy everything that is left on the template file that hasn't already been used. Does this make sense?

    @afro and @graham
    I've asked you to email me your files so I can see where the issue is.
  • Dan
    Hi there, I am new to CMS and blogs and had a request to build a new site with integrated blog so this guide was invaluable.

    I have now successfully compelted the task at hand but every time I perform a search or click away from the first page the stylesheets goes a little wry!!!

    Any help or advice would be great.
    Thanks in advance for your help!!
  • Dan
    Ignore my silly silly comments...it was my shoddy code!!

    Excellent work there! Well done!!!

    :)
  • I am running under CakePHP and now matter what I do, I keep getting parse errors in header.php. I have moved around code from there to index.php but still get the errors. Can I send you the code to take a quick peek?
  • RL
    I'm having a lot of trouble with this :-(

    I think I went wrong right from the beginning with not knowing how to set up a sidebar column. Having been through the rest of the tutorial, I am getting the same kind of issues as afro has mentioned above.

    Admin - I have just emailed you with my details and would be so grateful for your help. Happy to pay!
  • RL
    After hours of tinkering, I finally did it! Wordpress is integrated with my Joomla site and looks really good!! Thank you for providing this information :-)

    I have just two questions left and wondering if you could help me with them.

    1) When I click on my blog link from within Joomla, the site "jumps" a few pixels to the right. But when I click on an individual blog article, the site "jumps" back to it's original and correct position.

    I can't see anything that is different between the single.php and index.php that could be causing the site to jump. Do you have any suggestions?

    The single articles are the only ones that position correctly - the main index and the search & category results etc all position a few pixels "off".

    2) I'd like to further customise the appearance of my widgets and comments boxes.

    The WP now takes its styles from my Joomla stylesheet but because the joomla styling doesn't look too nice in the widgets.

    Ideally I would like to create separate styles for the widget headers, comment display box and the links within the widgets. How can I do this?

    Thank you.
  • I appear to have the same problem with sytax parse error, mine is lie 17 but I am sure it is the same for afro and the other post,
    Parse error: syntax error, unexpected T_STRING in /data/20/1/128/160/1943160/user/2120170/htdocs/rocfitness/blog1/wp-content/themes/default/index.php on line 17
    and that code is,
    <!– by –>
    I may be new to this but working hard to make it work, it is the final step to finishing this site for a freind. I have worked through most of my issues, but this one has me stuck for 2 weeks now.
  • Thanks for an extremely valuable tutorial and all of the follow-up to ensure things work properly!
  • istreen
    Looking for a french help to integrate wordpress 2.8.6 in joomla 1.5.15.

    Thx for your help
  • Andy
    Thanks for the Tut!

    I am wondering then if this page is in WordPress?
    Looks good! - However, it still wont have the Joomla! users integrated into WP will it?
    For that - would you just need to write a special hook during registration (Joomla side) to populate wp_users? And another in the login module (again Joomla) that saves the session for the WP side??
    This last part is the thing I'm most fuzzy on.
    Thanks again for the work!
  • Andy
    Also, I noticed that your sitemap is not integrated with your blog. Do you submit a separate sitemap to the search engines?? Do think there is a way of integrating this?
  • I have got the answer for the parse code errors, if you cut and paste the exact code from there tutor and paste it in DW the syntax is not correct, I went back to the original index.php and cleaned the code up, hint is look for the color differences and redo a little copy and paste to fix the issue, I had to correct sevral lines of code, but did get to work. I now have to figure out what is wrong with my images, and trying different urls and test to get the image to work, any help would be appreciated. Hope this helps a few looking to correct the parse error.
  • Shaun
    Steve,

    You have probably figured this out, but I just did so I am excited to share. My images weren't working either. I needed to include the entire fixed path to get them to show up. "http://www.mydomain.com/images"
  • I've come upon an "obvious" error that nobody else seems to have, which makes me wonder what is wrong with me? In editing the header.php you say to add:

    That is a conditional statement with an opening bracket and nothing closes it. That has to lead to a parsing error and sure enough, I get, "unexpected $end in .../header.php..." when executing this code.

    Simply adding a close bracket "}" resolves the error but then this snippet does nothing. Should we include all the code from the original header's if / else evaluation? Shouldn't it be inside the tags if it is to work at all? I am obviously confused.

    In the single.php section you say to copy everything from the index.php. But from the instructions the sidebar code isn't mentioned whereas everything else is. So, do we include the and the sidebar , or do we leave that out?

    Don't get me wrong, this tutorial has been a Godsend to me. I am deeply thankful. Just a couple things that still confuse me.
  • ???? What happened to the all important php code I included in my comments above????
  • @scott - apparently the crappy comment system on this blog does not allow you to paste code :) However I wanted to thank you for pointing out an error in the header.php file which was causing all the parse errors for people. The tutorial has been updated to remove the unneeded code.

    Also in answer to your question the sidebar was integrated into the index.php file earlier in the tutorial. So when we tell you to copy the index.php file code, it should already include the sidebar that you embedded in it somewhere in the index.php file. Does that make sense?
  • @admin (or whatever your real name is...:) ) -- Thanks! If that bit of header code has no purpose I can safely get rid of it. I noticed that including or excluding it made no difference in the initial appearance of the blog page. As to keeping sidebar code in the single.php, that is what I figured, if a little uncertainly.

    NOW, when it comes to copy and paste of code, that gave me all kinds of trouble. On a PC, whether using FF or IE, if I copy the code and paste it into Dreamweaver CS4 the " and ' characters are messed up and possibly some others. Of course it is because the font has left and right versions whereas in code you need the straight(?)characters. Any chance of using a different font for the code? It might help others.

    Thanks again for this GREAT tutorial!
  • theachard
    @admin

    Hi! Thanks for the tutorial, it worked great! I'm pretty new to WP theme design. Everything is set up great, but I'm having some trouble editing the styles.

    Before setting up the custom theme, I ran a company blog through WP using the Cutline theme. When I moved the blog over to the new customized theme, it reverted to the default styles. I've been trying to edit the stylesheet so that the styles look more like those in Cutline (though I'm not attached to this stylesheet either, I just want the ability to edit the default styles). But literally everything I try has no affect on the page. Do you have any ideas for what I might be missing?

    Thanks!
  • Mark Fuss
    I have tried to follow this exactly but I just ended up with a blank page. I am trying this on a local computer with Joomla and WordPress at localhost. Would it be possible to send you the files I modified as well as information about my configuration so you can show me what I have done wrong here?
  • Hi friends,
    Its vert nice tutorial I have integrate wordpress with site(it is made in plain PHP)It installed successfully but now I need a single login screen and after logged in, users will redirect to a common Control Panel. Presently, I hace two control panel one is my site(which is created into plain php) another one is “wp”(after wp installation.)
    2. Need to register users from the non-wordpress based site. But I don’t how can I achieve the following:

    [A] On registration time, store password in the user table. Please help to create the password with wordpress encrypion.

    [B] How can compare the password with database password on login time?

    3. Where can I find out Wordpress Function References?

    I hope that, the comment is active and will help me as soon as possible
  • Chris and Burn SEO great Job. After struggling with my own sloppy code errors the site works and looks great! Appreciate the How to and step by step. For those who like to see what the completed integration looks like.
    www.rocfitness.net
    Thanks Steve
  • Thanks for the tutorial, I have some questions however.

    You want us to devide the template in three chunks, no?

    I guess it should be
    1 <!DOCTYPE to
    2 form open to just before the footer open div
    3 from footer open div to close?

    Appreciate your help,

    Frank.
  • 1 meant from doctype to head close
    2 from body open to just before footer open
    3 rest

    Some of the div signs dissapeared in previous message
    .-= franksol´s last blog ..Hello world! =-.
  • Good stuff, thanks for the informative tutorial!
  • Gareth Hunt
    Hi, Thanks for this tutorial. It looks as though it could be really useful. I am howvere having a parse error in the index.php file - seems to be similar to what others have described and it's on the line: <?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –>

    Can you tell me why this may be?

    Thanks!
  • Oh my gosh! Oh my gosh! Oh my gosh!

    Thank you. It worked. I had to figure some things out on my own, and I am not through yet, but the look of my page is showing up with blog functionality!!!

    Everywhere else I looked, they said the page had to be a php page and I don't do php. This is a God send. Thank you so much!!
  • dwaynegarrett
    Excellent Tutorial!!

    The only issue I'm currently having is with the single.php

    The main index.php oage shows up just fine, it's the remaining pages that shows up just a bit off to the left. Also the footer is showing up into the content area now.

    Any ideas?

    I will keep working at it until I get I guess, but if anyone has any suggestions, please I'm all ears.

    Thanks,

    Dwayne
  • Appreciate the tutorial--working my way through it, and hoping you might be able to help me with a problem I'm encountering. After following these instructions, I'm coming up with an HTTP 500 Internal Server Error when I try to access my blog. When I request the pages directly, I'm getting the same error for index.php and header.php, but footer.php is displaying. Any idea what I might be doing wrong? Has anyone else encountered this problem and figured out where the error might be in the code? Thanks!
  • evolutionsigns
    Hi - great tutorial, but I want to include wordpress content into my site - is it possible to strip the header and footer completely and just include the content delivery area?

    I think that this approach would be best for an ecommerce site such as mine where it would be brilliant to include a portfolio section and product news etc.- at the moment I am experimenting with twitter but I don't really like it.
  • asela
    The Tutorial starts off good and then when it comes to the single.php file it looses it. The Video tutorial is also very unclear and confusing. For example it says to copy the contents of the index.php file into the single php file. In that case why not save the index.php file as the single.php file. Also at the same place on the video (at 9:43) it says paste over the top of it. Top of what? As a result my first page is fine but all the other blog pages are are all over the place. Also this is not what it says on the written tutorial. In the written tutorial it says to copy and paste a different code which looks nothing like what they use in the video. Any help would be appreciated. Thanks.
  • asela
    I seem to have this problem with the single.php file should does not seem to do anything. I even erased this file from the server and nothing happened. How is that possible. My index.php file works but the text on the other blog pages are all over the place. PLEASE HELP.
  • asela
    Now I realise, you have to update (like you did the single php) all the files. That means archive.php, archives.php, search.php, page.php haver also got to be updated. Of course I nested the php code for the content and sidebar in table. Have a look at it here at http:/www.miyoparker.com/blog.

    Now the next problem is solving how to change the font especially the sidebar heading fonts. The Recent Post, Archives, Blogroll, Pages fonts are too large. I am thinking I have to modify the sidebar.php file or the style.css or the rtl.css file. Will find out in due course
  • theblissrevolution
    Hi there! This is amazing - and exactly what I've been trying to figure out how to do! Thank you so much!

    I do have a couple issues I wondered if you could assist me with. Firstly, when I click on a blog title to go to the single post page, my site can't find it. Also, when I click on tags, those pages aren't formatted properly. Do you know how I can fix those things?

    My blog is located at http://www.theblissrevolution.com/blog

    Thank you again so much!

Facebook

Tweets

sithburns's avatar
sithburns sithburns
  • updates:
    1154
  • followers:
    18859
Loading...

Last 4 tweets in past 30 days from sithburns:

seo software

Bad Behavior has blocked 300 access attempts in the last 7 days.