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
Ken’s right. Using Firebug, you can identify that the ID for the Contacto menu item is
menu-item-431, so inserting this code in your Custom CSS or child theme’s style.css file will do it:#menu-item-431 {
float: right;
}Admin
If you modified the slider width, you would need to modify the width that WordPress automatically crops images into.
You will need a child theme for this. Insert this code in your child theme’s functions.php file (create one if it doesn’t exist yet):
<?php
function graphene_custom_slider_image_width(){
return 445; // Change this value to your slider's width
}
add_filter( 'graphene_slider_small_image_width', 'graphene_custom_slider_image_width' );
?>445px is the theme’s default slider width. Change it to your customised width.
Admin
In reply to: Removing Home Tab from Top Navigation Bar of Graphene 1.0.7 Theme in WP
July 20, 2011 at 4:13 am #15552Version 1.0.7 is such an old version, and a lot would have changed in the theme. But as long as you didn’t change the theme’s code yourself, you shouldn’t lose anything. All your posts and pages and other content will not be touched at all.
Be aware though that design-wise, the theme has come a long way since the early versions, and there has been a substantial design modifications. You should check out the demo site to see the latest version of the theme in use.
Admin
In reply to: Warning: in_array() [function.in-array]: Wrong datatype for second……loop.php
July 20, 2011 at 4:08 am #15542What version of WordPress are you using?
Admin
In reply to: Warning: in_array() [function.in-array]: Wrong datatype for second……loop.php
July 20, 2011 at 12:26 am #15540Please update to the latest version 1.4.1 and let me know if the problem still exists.
Admin
No tentative date yet. I’ve just submitted version 1.4.1 to the theme repository, which contains many bugfixes (but not this feature). Maybe a week or two, we’ll see. Not really keen on pushing updates any more often than that, unless it’s to fix critical bugs.
Admin
Not yet, but will be. I’ve just added the feature to the theme. Thanks for the suggestion!
Admin
Looks like you customised the menu through a child theme in previous versions. Version 1.4 featured a complete rewrite of the navigation menu function, so the old customisations for the menu will not work anymore.
Just remove the customisations for menu in your child theme, and it should be fine.
Admin
Not through the theme settings, no. You’d need to write custom codes to do that. Much easier to use a plugin, I would say, if there is one.
Admin
Disable the feature in Graphene Options > Display > Posts Display Options > Show post author’s info
