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
Hurm..that’s weird..are you using a child theme? If yes, what files are there in your child theme?
Admin
Hurm..that’s weird..does this happen every time? Are you using any kind of caching plugin?
Admin
In your child theme, create an empty functions.php file (if it’s not alraedy there) and insert this code:
remove_action('graphene_top_content', 'graphene_display_slider');
remove_action('graphene_bottom_content', 'graphene_display_slider');
add_action('graphene_before_post_content', 'graphene_display_slider');Admin
Sure can. Perhaps it’s time you learn about using WordPress action hooks? Here’s a good primer on Action Hooks: http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/
Here’s how. Insert this code into your child theme’s
functions.phpfile:function graphene_custom_content(){
?>
// Insert your HTML codes here
<?php
}
add_action( 'graphene_before_content-main', 'graphene_custom_content' );Admin
You’re welcome, Elaine 🙂
Admin
Try adding this:
#header-menu > li > a > strong {
font-weight: normal;
}Admin
It will place the slider after the post content, before the post footer. You would still have to tweak the widths using CSS though.
Admin
Your perseverence never fail to captivate me, Gitte 🙂
Admin
You need to use the Custom Menu function for this. Go to WP Admin > Appearance > Menus to set up your custom menu.
See this page for comprehensive details on how to use that function:
Admin
You’re missing a dot before the
widget_sp_image. The first line should be like this:.sidebar div.sidebar-wrap.widget_sp_image {
