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
In reply to: how to add a facebook icon next to rss icon at the top of theme
November 24, 2010 at 11:03 pm #11432Try inserting this code in your child theme’s style.css file:
#rss a{
margin-left:10px;
}
#rss a.rss_link{
margin-left:23px;
}Modify the
margin-leftproperty for the#rss aelement and leave themargin-leftproperty for the#rss a.rss_link.Admin
The latest version of the theme includes an option to specify the slider’s height. I noticed that you’re using version 1.0.9.3 of the theme. Upgrade to the latest version and you should see the option in the theme’s options page.
Admin
In reply to: adding email subscription, digg, reddit, etc. to subscribe widget
November 24, 2010 at 10:54 pm #11653I’m not sure what you’re referring to, as there is no subscription widget included with the theme. Are you using other plugin for this function?
Admin
You can either use the widget or add the categories/subcategories to the navigation menu.
Admin
I would suggest using Firebug (a Firefox add-on) to identify the ID or class of the elements that need changing, then change them using child theme CSS.
Admin
Put this code in your child theme’s functions.php file:
<?php
function graphene_fcg(){
include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php');
}
add_action('graphene_top_content', 'graphene_fcg');
?>Admin
I’m not sure if you can use a .php file in the background-image url.
Admin
If you follow this instruction on how to create a static front page, it should all work properly: http://codex.wordpress.org/Creating_a_Static_Front_Page
Admin
Sorry, can’t help you here. You should try asking the plugin author instead.
Admin
In reply to: how to add a facebook icon next to rss icon at the top of theme
November 22, 2010 at 7:42 am #11426In Andrew’s code, you need to replace the URL in the
<img src="http://yourlink.com" />with the URL to your icon. While I’m at that, you’d probably want to add thealtattribute to the<img>tag as well so that if for some reason the image is not available, the alt text will be displayed.<img src="http://link.to.image" alt="Image alternate text" />Sorry for the late reply. I’ll be away on vacation and won’t be able to reply to this forum as often.
