Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: Top bar options not displayed?

    #14281

    They are there now. If they don’t show up for you, try emptying your cache and then reloading your page.

    Ken

    Mod

    I figured it out!

    Go to Appearance >> Header. Change color code in “text color” at bottom!

    This theme is so great I knew it had to be in there somewhere! I’m a happy doofus now!

    Mod

    In reply to: Slider Image not showing

    #13619

    Will,

    That is definitely weird. If that doesn’t sort it out, then perhaps it’s a plugin or widget problem — not all are compatible with every theme. Try turning them off one at a time and see if that solves the problem.

    A long shot, but worth trying if you’ve got the time.

    -Ken

    Mod

    I tried

    #header h1 {
    color:#ddeeff;
    }

    in custom CSS but it didn’t change anything. Odd. I really don’t want to use a child theme to change one little thing. Bit of a bummer, really because

    #header h1 {
    background:#ddeeff;
    }

    does work. In fact, everything I do to #header h1,h2 in the custom CSS portion of Graphene options works, except for color. I’m stumped.

    Mod

    In reply to: Slider Image not showing

    #13616

    Did you set the “slider image” in the slider options to show the “featured image”? If so, make sure that you actually select a featured image in each post, even if there is only one image in each post.

    It might be easier to set the slider image to “first image in post” and then make sure that the one you want to be the slider image is the first one. (You can override this for individual posts should you want a later image to show up in the slider.)

    Not sure if this will help, but it’s worth trying. Let me know if it works for you.

    -Ken

    Mod

    In reply to: Problem with AddThis plugin and latest Graphene theme?

    #13581

    Looks like it’s running fine to me (I’m viewing it on a Mac) and the AddThis plugin works great for me running 1.2.1. Did you get this sorted out?

    Mod

    In reply to: Image not showing in Slider

    #11464

    That link doesn’t work…

    But try this, that I posted in another part of the forum.

    Mod

    In reply to: Slider not showing image

    #11208

    I had the same problem. Some post images would show up and others wouldn’t. I finally realized that some had been linked to from another webpage, and these were the ones not showing up. Apparently, WP can’t create a thumbnail from images it imports from other sites.

    Solution: I saved the images to my computer, then edited each post to remove the linked image, and uploaded the image I saved to my computer. Everything works great now!

    Mod

    In reply to: Print-Stylesheet

    #11216

    Actually, there is an easier way to do this. Use Firebug to identify which areas you want to hide when printing. Then, navigate to Appearance >> Graphene Options. Click on “Graphene Theme Options,” then “Display.” Scroll to the bottom where you see “Custom CSS.”

    Enter the following code:

    Code:
    @media print {
    .classiwanttohide {display:none}
    #idiwanttohide {display:none}
    }

    Don’t forget the closing curly bracket.

    The advantage to this method is that you can change anything you want to change (text size, font, etc.) when you print without creating a separate print.css or a separate child theme.

    I added the following:

    Code:
    @media print {
    #top-bar {display:none}
    #header {display:none}
    #nav {display:none}
    #footer {display:none}
    #sidebar1 {display:none}
    #respond {display:none}
    .post-meta {display:none}
    .post-nav {display:none}
    .entry {width:auto; font-family: Georgia, Times, Verdana, Geneva, Futura, sans-serif; font-size:11px; font-weight:light; color:#000}
    .alignleft {float:left; margin: 5px 20px 20px 0;}
    }

    I added the last item because WP will float graphics properly on screen, but not when they are printed. I only float graphics to the left, but if I floated them to the right as well, I would need to add code for that, as well.

    It works like a charm. Thanks, Syahir, for your incredibly flexible template. I absolutely love it!

Viewing 9 posts - 5,831 through 5,839 (of 5,839 total)