Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: font size short code

    #16726

    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

    In reply to: Images resizing on home slider

    #16770

    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

    #16742

    Hi 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

    In reply to: IE6 Sidebar issue

    #13342

    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

    In reply to: Resizing to larger width

    #16739
    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

    In reply to: Showing Off Wasdale Mountain Rescue

    #16709

    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

    #16703

    This 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

    In reply to: How to modify the theme using a child theme

    #10931
    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 !important is 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

    In reply to: remove or resize header

    #16692

    Simply insert this in the Custom CSS option:

    #header {
    display: none;
    }
    Admin

    In reply to: Show full post on home page

    #12738

    Do you have the Graphene Options > Display > Show excerpts in front page setting unchecked?

Viewing 10 posts - 4,231 through 4,240 (of 6,030 total)