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 haven’t actually tried bbPress with the theme, so it may not be compatible with the theme at the moment.
Admin
Please see this post:
https://forum.graphene-theme.com/graphene-support/new-navigation-menu-in-version-14-a-heads-up
And to change the menu font size and remove bold:
https://forum.graphene-theme.com/graphene-support/navigation-menu-text
Admin
There are four types of files that can exist in your child theme.
1. Files that must be there for the child theme to work
This would be the
style.cssfile. This file defines the name of your child theme and which parent theme is it using. This file is automatically loaded by WordPress when the child theme is activated. The parent’s theme’sstyle.cssfile however, will not be automatically loaded. That’s what the following line in the child theme’sstyle.cssfile is for:@import url("../graphene/style.css");2. WordPress template files
These are the files that WordPress recognised as template files. You can see a list of files recognised as WordPress template files from this Codex page. In addition to those files, any other files that the parent theme includes by using the
get_template_part()function belongs to this group of files as well. For example, theloop.phpfile.If any of the files above is present in the child theme’s folder, WordPress will automatically load those files, and it will not load the corresponding original files in the parent theme. This is the reason why you must copy the entire codes from the parent theme when adding files like
footer.phporheader.phpinto your child theme.3. The special
functions.phpfileThis is a special WordPress-recognised template file. It will be automatically loaded way before any other template files is loaded. It’s used for a lot of purposes, such as defining new PHP function and setting up certain features for the theme.
This file is optional. Your child theme can work wihout this file, but if it is present, it will be loaded automatically. Unlike the other template files, when this file exists in your child theme, WordPress will load both the child theme’s
functions.phpfile and the parent theme’sfunctions.phpfile. That is the reason why you should not copy the entire codes from the parent theme’sfunctions.phpfile.4. All other files
All other files apart from those described above will not be loaded, unless it is explicitly included in the other automatically-loaded files.
Admin
For starters, this line:
@import url("../graphene/style.css");@import url(http://blog.jungleman.dk/wp-content/themes/graphene/style.css");should just be this:
@import url("../graphene/style.css");Other than that, can you describe in what way is it not working?
Admin
Nope, those colours are actually background images. But of course, you can change it to colours of your own choosing via CSS. First, try using Firebug add-on for Firefox to figure out which CSS code you need to change.
Admin
Seems like you have resolved this problem?
Admin
Seems like you’ve achieved it using another slider 🙂
Admin
Admin
Nope,
.add-thiswill float to the left, and.add-this-rightwill float to the right, but both will have a top padding of 10px.Admin
Hi Nino,
Thanks for purchasing the theme! I’ll look into the bugs you listed above as soon as possible.
