Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: Slider questions

    #15528

    Please provide a URL so we can take a look. Thanks.

    Ken

    Mod

    Um, you really should update to the latest version of Graphene. If you use a custom menu, you can do this easily.

    Ken

    Mod

    I’m not a PHP expert by any means, but this will involve creating a child theme.

    In header.php, you will need to find this bit of code:

    <div id="rss" class="clearfix">
    <?php if ($graphene_settings['hide_feed_icon'] != true) : ?>
    <?php $custom_feed_url = ($graphene_settings['custom_feed_url']) ? $graphene_settings['custom_feed_url'] : get_bloginfo('rss2_url'); ?>
    <a href="<?php echo $custom_feed_url; ?>" title="<?php printf(esc_attr__("Subscribe to %s's RSS feed", 'graphene'), get_bloginfo('name')); ?>" class="rss_link"><span><?php _e('Subscribe to RSS feed', 'graphene'); ?></span></a>
    <?php endif; ?>
    <?php do_action('graphene_feed_icon'); ?>
    </div>

    and move it into this section:

    <div id="nav">

    Keep in mind that since the menus are generated from an array, you would probably have to place them to either before or after the menu items.

    Like I said, I’m not a PHP expert, so if anyone has a better/easier/correct way of doing this, let us know.

    Good luck!

    Ken

    Mod

    In reply to: Menu itens as categories

    #15520

    First, you really want to start using Firebug. It’s great for answering this sort of question.

    Use this code:

    #header-menu ul li a {
    font-size:10px;
    }

    changing the size to whatever you want. You can also change the color.

    Enjoy!

    Ken

    Mod

    In reply to: Navigation menu text

    #15478

    Try:

    #header-menu li {
    font: normal 18px arial;
    margin: 0 2px;
    }

    Ken

    Mod

    This seems like a problem with Windows Live Writer. Are you able to use WordPress and Graphene without any problems?

    Mod

    In reply to: Menu itens as categories

    #15518

    You can create a custom menu that contains just a single category in Appearance >> Menus and then add it to the header menu or the secondary menu.

    For examples, you can see my book blog where I have a custom menu with four categories placed on the secondary menu, or my personal blog, where I have a custom menu on both the header menu and the secondary menu.

    Ken

    Mod

    In reply to: Problem with HTML code and widgets

    #15440

    Add target="blank"

    The format goes like this:

    <a href="http://www.google.com" target="blank">Link Name</a>

    I make all my links open in a new window, so if my readers don’t like it, all they have to do is close the window and my site is still there.

    See this page for more help with anchor tags.

    Have fun!

    Ken

    Mod

    In reply to: Under construction

    #15494

    Why don’t you use a static front page that lets everyone know your site is still under construction?

    Alternatively, under “General Settings” you can enter a dummy “Site Address (URL),” which would result in “website not found” error.

    Just don’t forget to bookmark your login page.

    Ken

    Mod

    In reply to: Background image dimension

    #15484

    I’m not quite sure what you mean “fit perfectly in the background”. If you tile the background image, you can use pretty much any size you want (within reason).

    However, if you want an image that will stretch across the entire background (with no repeat), that will depend on the size of your browser window, and hence the size of your monitor. A smaller monitor will only display a part of the image, whereas a larger image will show the entire image with black space around it.

    If you want a single image to stretch to cover the background, regardless of the size of the browser window, you can add this to custom CSS:

    body {
    background-image: url(path_to_file);
    background-repeat:no-repeat;
    background-position:center center;
    background-attachment:fixed;
    -o-background-size: 100% 100%, auto;
    -moz-background-size: 100% 100%, auto;
    -webkit-background-size: 100% 100%, auto;
    background-size: 100% 100%, auto;
    }

    I have used this on a non-Wordpress site and it works fairly well (doesn’t work in all browers, though). Let me know how it works for you.

    Ken

Viewing 10 posts - 5,701 through 5,710 (of 5,839 total)