Mon
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Dazzling] Using Google FontOh wait, I tested it with firefox and it was working fine. Guess it’s Chrome problem :/
Forum: Themes and Templates
In reply to: [Dazzling] Using Google FontHi, sorry. I tried that but it still doesn’t work. Thing is, it’s appearing in widgets but just not withing posts and pages body. So I assume the body overwrites the font? Is there anything I could remove in order to not allow overwrites?
Forum: Themes and Templates
In reply to: [Dazzling] Using Google FontOkay this is what I did on functions.php
wp_register_style( 'fjalla', 'https://fonts.googleapis.com/css?family=Fjalla+One:400,700', false, '1.0', 'all' ); wp_enqueue_style( 'fjalla');
And on the CSS I have this
blockquote { font-family: 'Fjalla One', sans-serif; font-size: 14px;
Forum: Plugins
In reply to: [Portfolio Gallery - Photo Gallery] 2 or more portfoios on a single page?Same problem here. Let me know if you found a solution to this ??
Forum: Plugins
In reply to: [Portfolio Showcase] Description not showingThanks a lot, Supriya. I was successful in centering image but the plugin made my category pages crash. I tried fixing a lot of things and refreshing permalinks and htaccess but nothing works. So I gave up on this one and installed another plug in that also works on custom post type but it’s working fine. I really liked the UI of this one though :/
Forum: Plugins
In reply to: [Waving Portfolio] Plugin pushes sidebar below and enlarges content areNevermind. Got it ??
Forum: Plugins
In reply to: [Portfolio Showcase] Description not showingSupriya_Kadam you saved my life. I was really frustrated until I found your code. Works like a charm. Is there any way to center the featured image? ??
Forum: Fixing WordPress
In reply to: display thumbnails with category archive summaryThanks for the help.
Forum: Fixing WordPress
In reply to: display thumbnails with category archive summaryhe he. I just inserted images on da post, removed featured images and enabled html in excerpts to display the thumbnail image instead ??
Forum: Fixing WordPress
In reply to: display thumbnails with category archive summaryBrilliant help!
the_post_thumbnail(array( 200,200 ), array( 'class' => 'alignleft' )); ?>
This showed featured images. However as you can see in
, the images just float above the posts. Can I define some CSS Classes in StyleSheet.css and set it to the thubnails so they don’t look so detached? Or can you suggest ways to wrap it in text? Or how can I remove the excerpts in catergory archive pages and show post title and featured image instead? I’m using Pachyderm theme.And this is the current code.<?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ the_post_thumbnail(array( 200,200 ), array( 'class' => 'alignleft' )); get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php else : ?>
Forum: Themes and Templates
In reply to: [Pachyderm] Featured ImageThanks. I got the thumbnail sizes. However, I cannot find where you added post thumbnail in index.php since the functions used in index and archive are basically the same
get_template_part( ‘content’, get_post_format() );.
I added the code the_post_thumbnail( ‘post-thumbnails’ ); before that line so the thumbnails showed but they are too small and out of boundary.
Can you suggest something about it?Forum: Themes and Templates
In reply to: [Pachyderm] Widgets floating over 'easing slider'Eh, here comes another problem. The site-info section is now floating right in the middle of the widgets. How do I fix this. I try amending the CSS class .site-info but doesn’t work ??
Forum: Themes and Templates
In reply to: [Pachyderm] Widgets floating over 'easing slider'Uh, just got it by adding property
top: 360px;
??