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
I see that you’ve implemented the change via Custom CSS, and that the Custom CSS is applied in the admin area as well. This is not the intended behaviour – the Custom CSS should only be applied on the front end.
Have fixed this and will include it in future update.
Admin
Quote:I believe he thought this was were you inserted a header image for the page, when in fact, he was setting a featured image for the page.The Featured Image has a double function in the Graphene theme. Apart from being the image that is displayed as the thumbnail in posts listing and child pages listing and slider, it will also be used as the header image for that post/page if the featured image dimension is gretaer than or equal to the header image dimension.
Admin
Hurm..do you mean the footer shows up as blue as well in the WP Admin? That shouldn’t be happening.. how did you implement that footer colour change?
Admin
Yep, I meant that I can still see the text when editing pages or posts. Does it happen if you switch to the TwentyTen or TwentyEleven theme?
Admin
Quote:I tryed to set a futered image (960×198) to a page, but that just ads the image to the page conntent, not the header.How do you set that Featured Image? Firstly, setting an image as a Featured Image shouldn’t make it appear in the page. Secondly, if the size of that featured image is bigger than or equal to the theme’s header dimension, it should replace the header when that page is being displayed.
Admin
Yeah, action and filter hooks really are the core to WordPress’ customisability and extensibility. You won’t regret taking the time to learn about it 🙂
Admin
To implement that change in a child theme’s
functions.phpfile, you can probably do something like this:function josh_followme(){
?>
<div id="followme"><img src="http://www.joshlobe.com/wp-content/images/follow.png"></div>
<?php
}
add_action( 'graphene_feed_icon', 'josh_followme' );That would put the
followmediv right where the<?php do_action('graphene_feed_icon'); ?>code appears in the theme’s code.Notice that you don’t need to output the code exactly where you want it to be – there may not be any action hook available exactly where you want to place it – but you can always position it afterwards using CSS.
Admin
You might want to give a read through of this wiki page: http://wiki.khairul-syahir.com/graphene-theme/wiki/Customisation_using_a_child_theme
Admin
Quote:I need to go in and take out all that white space. I’m not sure if this was original, or if I did something while installing.I’ve seen this happening due to some FTP client setting or something, or maybe inconsistent line ending settings in your text/code editors.
If you have Dreamweaver, you can remove all the unnecessary newlines using these steps: http://forums.digitalpoint.com/showthread.php?t=622323#post5818363
On a side note, those lines are definitely NOT supposed to be there 😀
Admin
Try to select other option first, then selec the option to use categories again. The categories list selection should appear.
