Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: comment reply posts

    #16978
    Quote:
    Are people able to comment on video or other forms on format besides the standard? If so please tell me how I can fix this issue.

    People are still able to comment on those posts when they view the posts, just that the posts count is not displayed for those posts when they are listed.

    Admin

    In reply to: Header text above Header Image

    #17146

    You can also just modify the placement of the header text using custom css.

    Admin

    In reply to: Fatal Error

    #17256

    Hi there,

    Which WordPress version are you using? Have you modified any of the Graphene or Graphene Mobile’s themes files directly?

    Admin

    In reply to: How to Edit in Mobile & Standard Graphene

    #17243

    The <head> section is defined in the header.php file in each section. If you want to add something to the <head> section, use the ‘wp_head’ action hook instead of directly editing the theme’s file.

    You can learn more about action hooks here: http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/

    Admin

    In reply to: Remove "website" Field from Comments

    #16779

    Use Captcha and Akismet. Those spammers won’t have a chance.

    Admin

    In reply to: post dates (sticky post) + child theme

    #17139
    Quote:
    1) I would like to know if there is a code I can use in the style sheet to prevent the post date (currently hidden on my site) to be shown on the sticky post. I do want the date to be shown on all other posts, but not on the sticky post.

    Try adding this code to the Custom CSS option:

    .sticky .date {
    display: none;
    }

    Quote:
    2) So my second question is: is there anyone who can make a child theme for my site? I am willing to pay for it ofcourse!

    Contact me using the contact form on my website and we’ll discuss the terms.

    Admin

    In reply to: Editor Style: How to?

    #17134

    I would say that the theme’s editor-style.css is being deprived of love lately from the developers, due to other more important things. When the weather is nice and the coffee is having its effect, it may finally get some (overdue) attention!

    Admin

    In reply to: Apologize for Mass Questions (but one last-crucial-one)

    #17138

    If you’re referring to the ad in the bottom widget area, try this:

    #sidebar_bottom #text-25 {
    background: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    }

    How do I know which element to target in the CSS? Firebug.

    Admin

    In reply to: Expanding content width

    #17118

    Try this:

    #sidebar_bottom #text-25 {
    width: 300px;
    }
    Admin

    In reply to: Previous – Next posts

    #16506

    bobsled,

    Raindance is using a custom post navigation, while you’re using Graphene’s default post navigation. The CSS codes will be different.

    Try adding this to your Custom CSS option:

    .post-nav {
    text-align: center;
    }
    #previous {
    float: none;
    margin-left: 0;
    display: inline;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #ccc;
    }
    #next-post {
    float: none;
    margin-right: 0;
    text-align: left;
    }

Viewing 10 posts - 4,151 through 4,160 (of 6,030 total)