nervewax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Intergrating WordPress with a HTML site: Problems.Bumping this post:
I have been unsuccessful with this still ~_~I put this code at the very start of my <body> section:
` <?php
require(‘blog/wp-blog-header.php’);
?>`
and I included this in the website content area:
` <?php
global $post;
$args = array( ‘posts_per_page’ => 3 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a><br />
<?php endforeach; ?>
`
This is all included in my file: “default.html”
I also checked php is installed, and it is the correct version too.Any help would be much appreciated…
Forum: Themes and Templates
In reply to: Novo Theme: Editing "in page" CSSJust for anyone else who has this problem in the future:
I went to the site homepage and clicked “Customise” at the top.
I entered some custom CSS:#np-contact { background:#333 !important; }I don’t know if you get the custom CSS box by default but I did also install a plugin about custom css.
Forum: Themes and Templates
In reply to: [Oxygen] Problems Recreating wordpress.com VersionThanks so much paulwpxp for your help!
I’m getting there with it now, I just need to mess with the CSS some more, as you said.
http://nervewax.com.s168867.gridserver.comOn a side note, I noticed this theme uses a style.min.css. It’s quite hard to work with, is there anything that can be done about that?
Thanks for your help man, it’s very much appreciated!Forum: Themes and Templates
In reply to: [Oxygen] Problems Recreating wordpress.com VersionI think I understand, but is there no way I could get hold of the same customizations used in the .com version?