miniimage
Forum Replies Created
-
Forum: Themes and Templates
In reply to: www.remarpro.com main themeOnly WordPress has this theme.
Forum: Themes and Templates
In reply to: One WordPress InstallOops! I posted it in the wrong category.
Forum: Themes and Templates
In reply to: Customize Last PostSo how do I go about on inserting that? I just insert that code? I know you said that’s for the first post, but the maximum posts per page on my blog is 10.
Should I do something like this:
<div class="lastpost"> <?php $count = 10; if (have_posts()) { while (have_posts()) : the_post(); $count++; if ($count <= 10) { //your special stuff the_content(); } else { the_content(); } endwhile; } ?> </div>
Oh, and thanks!
Forum: Themes and Templates
In reply to: Image Alignment ProblemThat’s cool! But I think the Firebug Firefox Add-on does something similar where you can edit the HTML and CSS and shows the changes you have made in the browser. And it’s actually really neat because it’s integrated in the browser.
=)
Forum: Themes and Templates
In reply to: Image Alignment ProblemThat’s cool! But I think the Firebug Firefox Add-on does something similar where you can edit the HTML and CSS and shows the changes you have made in the browser. And it’s actually really neat because it’s integrated in the browser.
=)
Forum: Themes and Templates
In reply to: Image Alignment ProblemI switch between Macs and PCs but I use Notepad++ for my PC.
And Thanks again for your help.
*changes topic to “resolved”*
Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?Because in the page.php it calls for the header.php with this code:
<?php get_header(); ?>
Forum: Themes and Templates
In reply to: Image Alignment ProblemWait. I just fixed it with:
.post { margin: 25px 0 0 0; border-bottom: 2px solid #e3e3e3; float: left; width: 100%; }
Forum: Themes and Templates
In reply to: Image Alignment ProblemAnother issue. If you scroll down, you’ll see.
Your help is greatly appreciated.
Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?guys tell me if i’m right
i’m actually pretty new to wordpress (i started since october 11)
Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?ok so i think i’ve got it
- go to your page.php
- erase
<?php get_header(); ?>
- go to your header.php
- select all and copy everything
- go back to the page.php
- paste everything at the top, which replaces the
<?php get_header(); ?>
- create a new stylesheet
- once you are done save the stylesheet as pagestyle.css
- go back to the page.php
- find
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo get_template_directory_uri(); ?>/style.css" />
- and change that to
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo get_template_directory_uri(); ?>/pagestyle.css" />
oh and ignore the numbers its messed
just follow the order from top to bottom
Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?wait let me look at the k2 template
Forum: Themes and Templates
In reply to: Image Alignment ProblemThanks! Worked! Wow!
Thank you so much, CSS Guru.
Forum: Themes and Templates
In reply to: Image Alignment ProblemAlso if you go all the way to the bottom, you can see that it’s not centered. I think I have an OCD and I can’t settle with this.
Forum: Themes and Templates
In reply to: Image Alignment ProblemI know I could put this in my style.css
br { clear:both; }
But still I have to keep putting
<br />
on my posts every time I have to put an image.Hmmm… there must be some fault in my template.