Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
How many posts do you currently have? The default WordPress setting is to show 10 posts per page, so you probably don’t have enough posts yet to be paginated.
Admin
@ramyos, you would need to create a child theme, and then place the code inside the
functions.phpin your child theme.See this wiki page for instructions on setting up a child theme:
http://wiki.khairul-syahir.com/graphene-theme/wiki/Customisation_using_a_child_theme
Admin
If you’re using a child theme, you can limit the number of ads that the theme displays. Place this code in your child theme’s
functions.phpfile:function my_graphene_ads_limit(){
return 1;
}
add_filter( 'graphene_adsense_ads_limit', 'my_graphene_ads_limit' );Admin
Quote:Can I enter !important right into the field where I enter the color?Like “#transparent !important”
Nope, you cannot. Those fields are only for hex colour codes. For all other values, use the Custom CSS feature instead.
The
#was added really after there have been quite a number of support requests here saying that the colour option does not work, which is often because they didn’t put the#in there.Admin
What exactly have you moved?
Admin
That is a slideshow, not an image gallery, which is the reason why none of the NGG styles you selected is having any effect. Image gallery is a list of image thumbnails, where you need to click on the thumbnails to view the images.
To add shadow to that slideshow, try adding this to the theme’s Custom CSS feature:
.entry-content div.slideshow {
-webkit-box-shadow: 0 0 5px #000;
-moz-box-shadow: 0 0 5px #000;
box-shadow: 0 0 5px #000;
line-height: 0;
margin-top: 10px;
}Admin
In reply to: Comment text area goes off on enabling "graphene_comment_textarea" action hook (Since 1.7)
May 7, 2012 at 9:14 pm #28332Okay, that action hook isn’t supposed to be there. You might not be able to use the theme’a action hook widget area for this, but you can hook functions to it using WordPress’ own
comment_form_after_fieldsaction hook.Admin
Can you point us to a page on your site where a gallery from the NextGen Gallery is being displayed?
Admin
In reply to: Home Page Widgets Missing in IE 8,9 and one post; visible in all other posts
May 7, 2012 at 9:33 am #28226There seems to be a bunch of (malformed) codes at the end of that page content. Try going to the Edit Page screen for that page, swicth the editor from Visual to HTML mode, then delete the extraneous codes at the bottom of the page’s content.
Admin
Hurm.. did you modify any of the theme’s files?
