Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: Also having issues with my RSS feed

    #24933

    Moved to Support.

    Mod

    In reply to: style.css hierarchy

    #24858

    The functions file is a .php file, not an .asp file. There should be some opening and closing php tags, and no line breaks.

    It’s possible that your ftp client was set to the wrong type of mode. Your functions file should look like:

    <?php

    function graphene_modify_header_height(){
    return 309;
    }
    add_filter('graphene_header_image_height', 'graphene_modify_header_height');

    ?>
    Mod

    In reply to: Widgets

    #24903

    Yes.

    In the css for that widget, you’ll need to set the background to the same background of your #content element, and set the h3 element to display:none

    E.g.,

    #text-11 .sidebar div.sidebar-wrap {
    background: [same as #content];
    }
    #text-11 h3 {display:none;}

    Not tested, but should work.

    Mod

    In reply to: Problems with Social Plugin

    #24906

    You are applying the class .button to these elements, but that class is already defined in the Graphene style sheet and is used for “Read More” buttons. Thus, your social buttons are looking like “Read More” buttons. You need to delete that class from the code you entered for the social buttons.

    Mod

    In reply to: style.css hierarchy

    #24856

    It really shouldn’t be pulling in the graphene style sheet. (The light styles is okay, however.) It may be something funky in your functions file.

    Mod

    In reply to: Remove wordpress title and tag from centre of header

    #24915

    Go to Appearance >> Header and for “Display Text”, check the button marked “No.”

    The text will be gone from the header.

    Go to Settings >> General. For “Site Title” and “Tagline” enter the text you want search engines to recognize your site by. Because of the choice you made in the Header pane, this will not show up on your blog, but it will/should show up in most search engines.

    Remember, you have no control over what search engines display or how they display it. You can only make it easier for them to find you.

    Mod

    In reply to: How to style "Reply" button in CSS?

    #24917

    Also, would anyone write me the method how to add such stylish buttons anywhere in one of my posts or pages?

    The “Read more” button is class .block-button. Whenever you add a link, just specify that the class is block-button and it will have the appearance of that button.

    I’m not sure about the “Reply” button. Show me a page where this is and I can take a closer look.

    Mod

    In reply to: Background image

    #24807

    Yes, you can put this in custom css.

    To make a css rule affect only a certain page, just prefix any css declaration with the post id:

    #post-1329 .slider_post {
    background: url("image_URL");
    }

    That basically tells your browser to apply that background to any object of class .slider_post only if it is part of an element with the id #post-1329.

    You would need to change to the correct post number, of course.

    Mod

    In reply to: Gradient

    #24758

    Yes, you can.

    I actually had a lot of stuff in my custom css at one point (over 100 lines), so a few lines of code for a gradient does work.

    Mod

    In reply to: wrong action hook action :)

    #24868

    I see you have some share buttons now. Did you fix this the way you want it?

Viewing 10 posts - 4,241 through 4,250 (of 5,839 total)