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
It appears fine on my end:
Admin
This has been fixed and will be available in the next update. In the mean time, the default value for the submenu width is 200px.
Admin
You can use either .png, .gif, or .ico, since those are the three formats that you can use as favicon as defined in the W3C standards.
Admin
Glad it works out for you 🙂
Admin
Select the category you want to be shown in the slider, then add this in your child theme’s functions.php file:
<?php
function graphene_randomise_slider_posts( $args ){
$args = array_merge( $args, array( 'orderby' => 'rand' ) );
return $args;
}
add_filter( '', 'graphene_randomise_slider_posts' );
?>Admin
Admin
OK, fixed.
Admin
That error is usually caused by the mentioned file outputting a character when it isn’t supposed to. Check your child theme’s functions.php file to see if you have an extra space between the opening
<?phpand closing?>tags at or about line 40.To change the generic image, just add this in your child theme’s functions.php file:
function graphene_custom_generic_img(){
return '<img alt="" src="'.get_stylesheet_directory_uri().'/images/img_slider_generic-GCGOP.png" />';
}
add_filter( 'graphene_generic_slider_img', 'graphene_custom_generic_img' );Admin
Hi Mark,
The colour codes that you entered is missing a hash (#) in front of it. Colour codes in CSS take the following form:
#123abcThat is, it always starts with a hash character, followed by either 3 or 6 hexadecimal colour values.
Admin
What’s the URL to your site?
