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 case you haven’t updated yet, version 1.1.4 (not alpha) has already been released and available from the WP.org theme repository.
As for the slider, the next version will also full posts to be displayed in the slider, so you can taylor the posts to have the look and content that you want in the slider.
Admin
Here is a link to all the theme’s files ever uploaded to the WordPress.org theme repository: http://themes.svn.wordpress.org/graphene/
As for changing the header width, have a look at this thread: https://forum.graphene-theme.com/topic/header-image-size-change#post-356
Also, it is not recommended to edit the theme’s files directly, as you’ll lose the changes the next time you update the theme. The recommended way is to use a child theme instead: https://forum.graphene-theme.com/topic/how-to-modify-the-theme-using-a-child-theme
Admin
For the footer widgets, add this to the Custom CSS:
#sidebar_bottom .sidebar-wrap {
width: 468px;
}For the posts, in your child theme’s style.css file one line 145, add the
.nodateclass so it becomes like this:.page .post .entry, .author .post .entry, .nodate{Admin
Very easy to make it work with modern browsers (i.e. Firefox, Chrome, etc.) but not so easy to make it work with IE.
What you can do is create a small semi-transparent image (10×10 pixels maybe) using Photoshop or other image editing software, and then use CSS to have the main content area to use that small image as a repeating background.
Admin
Not quite sure what you mean by “link my posts to the menu categories”. Can you explain a little bit more?
Admin
This is out of the scope of the Graphene theme’s support. You’d probably get more help asking it in the WordPress.org support forum.
Admin
Yes. Just add the code to your child theme’s style.css file.
Admin
In reply to: (1.1.4) Slider don't appear and footer widget counts
February 15, 2011 at 2:42 am #12540It was working fine in version 1.1.3.1?
Admin
Nope, it’s not. It’s a bug, and has been fixed and will be available in the next version.
In the meantime, you can fix it by opening the theme’s index.php file. Then on line 25, replace this line:
$args = array_merge($wp_query->query, array('cat' => $cats));with these lines:
$args = $query_string.$cats;
query_posts($args);Admin
The style in your child theme’s style.css file is the issue:
.home.page .post .entry, .author .post .entry, .nodate {
width:990px;
}Try removing the
.nodateclass from that line.Also, reduce the
#containerwidth to 1024px. The latest version no longer has padding in the container.
