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
Try restoring all of the theme’s CSS codes for the navigation part. Then it’ll be easier to help you customise it to how you wanted.
Admin
This is how it’s supposed to look like:

And yes, the background is taken from the featured image of the post.
Admin
Add into your Custom CSS option:
.home .post-4 {
display: none;
}Admin
It doesn’t look blurred to me: http://tinypic.com/r/qnjog7/7
Admin
In reply to: Different header menus when using multiple languages
August 10, 2011 at 10:25 pm #16152You might want to use the WPML plugin for your multilingual needs. It has exactly the feature you want (i.e. different menus for different languages). However, I should caution you that it’s not free, though you can get an older, free version from the WordPress plugin repository.
Admin
Hurm..just to make sure that it’s really an issue with theme, try switching to the default theme and see whether the issue is still there.
Admin
To insert HTML code in PHP codes, there are two ways. First way:
<?php
function foobar(){
echo '<p>This is some HTML which will be printed out (i.e. "echoed") to the screen</p>';
}
?>Second way:
<?php
function foobar(){
// Some PHP codes
?>
<p>This is some HTML which will be printed out to the screen.</p>
<?php
// Some more PHP codes
}
?>To prevent the slider from being displayed in excerpts, you can use the
is_singular()conditional:function graphene_custom_content_related_posts_slider(){
if( function_exists('get_related_posts_slider') && is_singular() ){
get_related_posts_slider();
}
}
add_action( 'graphene_after_post_content', 'graphene_custom_content_related_posts_slider' );That way, the slider will only be displayed on singular pages, i.e. single post page, single page page, single attachment page.
Admin
I think the easiest way to achieve this is simply to use CSS to hide the text, and then apply the image you want as a background image. Something like:
#header-menu > li > a > strong {
display: none; /* This hides the text */
}
#header-menu > li.page-item-4 > a {
background: url(path/to/image.png) no-repeat; /* Apply background to the Home menu item */
}Admin
I have the same version of Chrome as you (Chrome automatically updates itself whenever there’s new version available). Maybe you can post a screenshot showing exactly how things are not working on your end?
Admin
Graphene Options > Display > Header Display Options
