Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: Custom Permalinks

    #15609

    Some hosts will not allow you much access to .htaccess, and that’s what takes care of rewriting the URL’s. You might want to contact them for ideas.

    Ken

    Mod

    In reply to: Static home page contents

    #15615

    I knew there had to be a simpler way. Thanks!

    Mod

    In reply to: Static home page contents

    #15613

    Oh yeah, did you read this page from the Codex that tells you how to set up a static front page? (I don’t think you’ll need to create the second page.)

    Ken

    Mod

    In reply to: Static home page contents

    #15612

    That white bar is actually a CSS background that is part of the “sprite_h.png” image file.

    The CSS for the footer looks like:

    #footer {
    background: url(images/sprite_h.png) left -952px repeat-x #111;
    border-top: 1px solid #d5d5d5;
    padding-top: 50px;
    margin-bottom: 50px;
    min-height: 100px;
    position: relative;
    color: #999;
    padding-bottom: 20px;
    }

    You can’t just delete the “background” line, because Custom CSS doesn’t replace the original CSS, it only overrides it. I have had success just taking out the URL, so it reads

    background: url() left -952px repeat-x #111;

    This will still leave a black space where that white bar was. This is controlled by the padding-top: 50px; line. Change that 50px to something smaller to tighten up the layout.

    Ken

    Mod

    In reply to: Custom Permalinks

    #15607

    Okay, well first solution is to go back to default settings. Make sure those still work first.

    Have you changed anything else on your site? At first thought, it seems that your .htaccess file is not correctly configured. Does your hosting service allow you to change .htaccess? If not, that is why permalinks are not working properly.

    See the end of this page from the Codex (under “Save Changes”), and also see if anything on this page makes sense.

    Ken

    Mod

    In reply to: change width of available space

    #15586

    Try this post for starters.

    Ken

    Mod

    Try this in your CSS:

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

    Or whichever size you would like.

    Ken

    Mod

    In reply to: Menu item to the right

    #15507

    Where did you insert it? I am not seeing it in your custom CSS.

    Mod

    Well, the appearance will be somewhat different, but I don’t see anything that you should expect to lose. If you didn’t edit any of the theme’s core files, the only difficulty that might arise would be a plugin being incompatible with the new theme, but you run a pretty lean blog, so I don’t see much of a problem.

    Go ahead and update. If you don’t like what happens, you can always go back to an older version.

    Ken

    Mod

    In reply to: Text more evident

    #15570

    If this is all you want to change, you can just add it to custom CSS in Graphene options (bottom of the “Display” tab). No need for a child theme. I have made a lot of modifications to my blogs just through CSS and the available options without creating a child theme.

    Ken

Viewing 10 posts - 5,681 through 5,690 (of 5,839 total)