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
Hi Michael,
You can use one of the action hooks in the theme to output the content, and then use CSS absolute positioning to position it beside the slider.
The code should be something like this below (place it in your child theme’s functions.php):
function graphene_custom_content(){
if (is_front_page()) {
?>
<div id="graphene_custom_content">
<!-- The content goes here -->
</div>
<?php
}
}
add_action('graphene_before_content', 'graphene_custom_content');Admin
It’s actually 900 x 198 pixels
Admin
I’m pretty sure that’s not valid XHTML, since inline element (
<a>) cannot contain a block-level element (<div>).Admin
I tried entering the symbol mu and another greek symbol, and they show up fine. Did you enter them using the “Insert custom character” button on the WordPress editor?
Admin
I see…in that case no, there’s no option to disable the gravatar on pages, unless you modify the source code, which isn’t recommended cause then you’ll lose the changes when you update the theme.
The easiest way I can think of right now is to use a child theme, and just use CSS to hide the gravatar in pages. I believe the following CSS codes would do:
.page .post-meta p.post-author img.avatar{
display:none;
}I will remove the gravatar from pages in the next update.
Admin
There’s an option in the Graphene Display options page. Under Posts Display Options, make sure the
Show post author's gravataris unticked.Admin
Admin
My last reply on this thread might help you: https://forum.graphene-theme.com/topic/changed-sprite-images-and-css-but-not-showing-on-website
Admin
In reply to: Changed Sprite Images and Css, but not showing on website
October 14, 2010 at 6:35 pm #11319Yes, you can do that. Just because I use sprite images for most of the backgrounds doesn’t mean that you should too. In fact, it’s much easier to not use individual images instead of sprite images for background, especially if you want to customise certain element’s background.
But of course, using sprite image has its performance advantage. But using individual images for just one or two background shouldn’t give much of a difference.
Admin
I can’t seem to reproduce this bug..It’s working fine in my test server..
