Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: text alignment issue

    #25124

    Can you point us to a page where this is happening?

    Admin

    In reply to: problem with line spacing

    #25108

    Come on now, you’ve posted a topic about this issue, and it is being responded to at that. Please don’t create a duplicate topic. It won’t get your queries answered any faster.

    Read the forum rules here:

    https://forum.graphene-theme.com/graphene-support/forum-rules-please-read-especially-if-youre-new-to-the-forum

    Topic closed.

    Admin

    In reply to: unwanted line spacing

    #25105

    I’m still seeing that the line height is 13. It needs to be 13px. Did you make the change?

    Admin

    In reply to: Slider Suddenly Stopped Working

    #24993
    Quote:
    Then I would like to know, what happen since many have experienced this today, even we did nothing with our computer(s) or WP yesterday?

    The theme loads the jQuery Tools library from the jQuery Tools CDN, since CDN generally offers faster download speeds regardless of where your site’s visitor is located. However, somehow domain name resolution of the CDN failed for some of you, probably due to a fault in the CDN’s DNS server or something. I wouldn’t be surprised if those of you who are experiencing the problem are on the same ISP.

    Short story is, the jQuery Tools library is located on a certain server(s) somewhere, and somehow for some of you that server can’t be found, therefore the jQuery Tools library can’t be loaded, hence the slider stops working.

    What the fix does is to make a local copy of the jQuery Tools library on your server, so that you know it’ll always be available as long as your site is available, albeit at the expense of some performance, if any.

    Admin

    In reply to: How to reorder posts in Graphene Theme?

    #24921

    Try adding this to your child theme’s functions.php file:

    function graphene_alter_the_query( $request ) {
    $dummy_query = new WP_Query(); // the query isn't run if we don't pass any query vars
    $dummy_query->parse_query( $request );

    // this is the actual manipulation; do whatever you need here
    if ( $dummy_query->is_category() )
    $request['gdsr_sort'] = 'rating';

    return $request;
    }
    add_filter( 'request', 'graphene_alter_the_query' );
    Admin

    In reply to: Slider Suddenly Stopped Working

    #24983
    Quote:
    Tried this link. Will not load for me.

    http://cdn.jquerytools.org/1.2.5/all/jquery.tools.min.js

    Quote:
    Same her:

    Server not found

    Firefox can’t find the server at cdn.jquerytools.org.

    And therein lies the problem.

    OK, try this.

    First, add the jquery-tools-1.2.5.min.js file to the theme’s /js/ folder. You can get it from here:

    http://code.google.com/p/graphene/source/browse/branches/1.6/js/

    Second, replace the content of the theme’s /includes/theme-script.php with the updated one here:

    http://graphene.googlecode.com/svn/branches/1.6/includes/theme-scripts.php

    Admin

    In reply to: Slider Suddenly Stopped Working

    #24980
    Quote:
    Also notice an oddity in the blog’s URL. http://www.derekhaines.ch/vandal/# The hash symbol appeared when clicking on the blank slider.

    This is usually a symptom of a JavaScript issue, which itself can be any number of things. However, seeing that the slider is displaying fine on my end for all three of the websites listed above (@Kronberg, @bobsled, @gcoker), I’m thinking that somehow the jQuery Tools library is not being loaded on your ends.

    Which of course, could be the result of any number of things.

    So try loading this link on your browser and see if the codes show up:

    http://cdn.jquerytools.org/1.2.5/all/jquery.tools.min.js

    Admin

    In reply to: unwanted line spacing

    #25103

    Hurm..looks like you set it at Graphene Options > Display > Text Style Options > Content Text > Text line height.

    Admin

    In reply to: unwanted line spacing

    #25101

    You have this in your Custom CSS:

    .entry-content, .sidebar, .comment-entry {
    font-family: georgia;
    line-height: 13;
    }

    Give a unit for the line-height, like so:

    .entry-content, .sidebar, .comment-entry {
    font-family: georgia;
    line-height: 13px;
    }
    Admin

    In reply to: Removing Comments

    #25100

    WP Admin > Appearance > Graphene Options > Comments Options.

Viewing 10 posts - 3,541 through 3,550 (of 6,030 total)