Pinkster
Pinkster is a 3 columns fixed width WordPress theme by MagPress.com. This WP theme has featured content slider and featured categories, Adsense ready, etc.
Tags: Adsense Ready, Custom Header, Custom Menu, Featured Content, Featured Images, Fixed Width, Full Width Template, Left Sidebar, Pink, Right Sidebar, Sidebar Footer, Theme Options, Threaded Comments, Three Columns, White, Widget Ready
look Great, thank you! i will test it as soon as posible!
Well, I guess this is wat i have been searching for , Actually, wat i accidently visited this site. Tnk u for donating it 4 free.
Such a killer theme. I changed to my blog to this or to Woodpress 🙂 (Link given in my Name)
How do I change the fonts and can I darken the bacground?
BTW, the font I want to change is the name of my website. And I meant background. Can I change the background?
hi isabelle, yes but the background stripes need to go tho, its not a transparent stripe.
ok open style.css and add this css
body {
background: #YOURHEXCOLOR none !important;
}
h1#site-title {
font-family: your font family !important;
}
that should do it…
Hi, I was wondering why nothing is showing up on the third column on my website. How do I activate that?
Thank you.
hi isabelle, try go to ddashboard->widget and setup the widget accordingly.
thank you very much,
template is very suitable to my game site, you can see gamezfile.com. I say once again thank you, ..
next, I upgraded to premium 🙂
How do I get the pages to show up at the top of my page. Also how to I get the “featured news” and “latest on entertainment”
you can setup the menu in dashboard->appearence->menu
the featured setting can be setup in dashboard->appearence->theme options
How do I add a favicon to pinkster? I have followed the directions from several sites repeatedly and none of them work. Thanks again for all the help! Pinkster is AWESOME and I’m thrilled with it.
try add this code to your functions.php jus below the start
[php]
function add_theme_fav_icon() { ?>
<link rel="icon" href="hxxp://your-fav-icon-full-path-url" type="images/x-icon" />
<?php }
add_action('wp_head', 'add_theme_fav_icon', 1);
[/php]
you need to change the fav icon url there.
Maybe this is a better question posted at large. How do you upload the CSS to WordPress? I’m new at this and I can’t figure out how to do it. I love the template, but I haven’t been able to use it. Also, is there a particular WordPress theme that I should use?
Thanks!
hi heather, should be simple..once you download the pinkster.zip. login to your wordpress site -> appearence -> themes – add new theme
upload the zip and it will showed in dashboard->themes.
you cannot use the theme in wordpress hosted blog tho. cheers
Which type of upgrade do I need to have in order to enable the “add new themes” option?
Thank you!
there’s no upgrade needed. you can go to dashboard -> appereance -> themes -> add new themes.
hello, Thanks for the great theme, but how to post full posts instead of excerpt posts.
hi, open index.php and find line between 43-46 and replace
[php]<div class="post-content">
<?php if ( has_post_thumbnail() ) { ?>
<div class="thumb"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(200,200), array(‘class’ => ‘alignleft’)); ?></a></div>
<?php } ?>
<?php echo custom_excerpt(40); ?><span class="readmore"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Read More</a></span>
</div>[/php]
to
[php]<?php the_content( __(‘…more »’,TEMPLATE_DOMAIN) ); ?>[/php]
beautiful layout, clean design, and the article and photos, everything is placed on a checkered background which looks nice.
Hello,
I’m adding images to my posts via “Add media” button on the New Post page. However, images are shown on single post page, but not anywhere else, like in Recent posts, related posts, etc.
What to do?
Thanks!
hi you can’t cause the recent post and related post did not have the_post_thumbnail() coded.
Hi,
I am using this theme for my website but I have one issue coming Up.
I need to show only single category post on homepage not all other category post How can i do that with this theme.
Please help me on the same.
you are looking for custom query. the theme by wp standard query all posts.
check http://codex.wordpress.org/Function_Reference/query_posts for more info on query by certain category.
or open index.php edit line 18
[css]<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(‘showposts=&cat=&paged=’ . $paged);?> [/css]
to
[css]<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(‘showposts=&cat=1,2,3,4,5&paged=’ . $paged);?> [/css]
you see i add cat id to cat=
thank you
I am using this theme for my website 😀