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
You might want to use the class attribute instead of id for the
<span>element. IDs are meant to be unique in a page, while classes are not. Just in case some of your posts/pages need more than one instance of the[small]shortcode.Admin
Try adding this to your Custom CSS option:
.two-columns .homepage_pane img{
max-width: 317px;
}The theme basically assumes that the image is bigger in dimension than the width of that homepage pane. Will be fixed in the next update.
Admin
In reply to: Help with using Market Press E-commerce and Graphene
September 3, 2011 at 1:42 pm #16742Hi Martin,
Can you just briefly switch to TwentyTen and do a screenshot, so that I can see how it’s supposed to look like?
Admin
I’d be glad to share it, but I don’t think it will work for your site, as it is very heavily customised.
Admin
Quote:There may be an option for this in the next theme update.I’ll probably be pushing that feature to a later version, as it involves substantial code writing. The current pre-alpha version of 1.5 already has quite a huge changeset. Introducing the custom column size option for version 1.5 would push its release date further, and may invite a sleuth of bugs after release.
Admin
Looks good! Maybe add little icons for the sunset and sunrise time? Also, it’ll probably be better to define a background colour for the header (eg. black), so that it won’t be see-through while the header image is loading.
Admin
In reply to: Configuring Home Page into Grid/Box Layout for Posts
September 3, 2011 at 1:25 pm #16703This is more “do you guys know how to do it” rather than “have you guys had any luck”. It is definitely possible, and have been done before. It just takes quite a substantial code (PHP + HTML + CSS) writing.
See this site for example: http://www.hervecuisine.com/recette/desserts/
It’s not the homepage, but it can also be implemented in the home page if that’s what the site owner wants.
Admin
Quote:So if I put code into a child style.css after the @import, wouldn’t that overwrite prior code from the theme?Yes, and that’s the whole point of the child theme, to allow you to override the theme’s codes without actually changing the theme’s codes.
That said, there are several levels of priorities in CSS. Example: CSS property declaration that ended with
!importantis given higher priority than those without.Say that in the theme’s style.css, following property is declared:
.someclass {
width: 200px !important;
}And then you try to override it in your child theme’s CSS by doing something like this:
#someid .someclass {
width: 300px;
}Your child theme’s property declaration will be ignored, because it is of lesser priority compared to the first declaration.
Admin
Simply insert this in the Custom CSS option:
#header {
display: none;
}Admin
Do you have the Graphene Options > Display > Show excerpts in front page setting unchecked?
