Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: New Type of Slider – non post

    #12493

    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

    In reply to: help to enlarge the header to 1200px

    #12595

    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

    In reply to: Expanding the width with update

    #12503

    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 .nodate class so it becomes like this:

    .page .post .entry, .author .post .entry, .nodate{
    Admin

    In reply to: Transparent text box?

    #12593

    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

    In reply to: Linking Posts to Custom Menu

    #12589

    Not quite sure what you mean by “link my posts to the menu categories”. Can you explain a little bit more?

    Admin

    In reply to: Blog Feed on Website

    #12592

    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

    In reply to: Help with Changing Colors

    #11951

    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

    #12540

    It was working fine in version 1.1.3.1?

    Admin

    In reply to: Post Categories

    #12588

    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

    In reply to: Expanding the width with update

    #12501

    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 .nodate class from that line.

    Also, reduce the #container width to 1024px. The latest version no longer has padding in the container.

Viewing 10 posts - 5,371 through 5,380 (of 6,030 total)