Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    Very cool. Thanks!

    Can’t wait for the new update!

    Mod

    In reply to: 404 page doesnt show up

    #14917

    Looks good so far.

    If nothing else, try this.

    Ken

    Mod

    In reply to: 404 page doesnt show up

    #14913

    URL?

    Mod

    In reply to: Images are not displaying correctly.

    #14699

    Edit your posts. Click on the image that isn’t showing up and click on the left-hand icon so you can edit it. Change the link information so that clicking on the image links to the image file.

    This might do the trick.

    Ken

    Mod

    In reply to: Small Images/Icons Next to Dropdown menu entries

    #11677

    You can add an icon to the beginning of each menu item by adding this custom CSS:

    #nav li {
    list-style-image:url('directory to image you want to use');
    list-style-position:inside;
    }

    but then each will have the same icon.

    I think you are looking for something more like this, only without the text?

    In that case, you will need to use the class number of each menu item in the custom CSS and not bother with text. I’m not entirely sure how that to accomplish that just yet, however.

    Mod

    In reply to: Removing "comments closed" from the bottom of a page

    #13268

    Use custom CSS:

    #respond {display:none}

    This has the advantage that whether you disable comments or not, neither the comment entry box nor the “comments are closed” message will appear.

    Mod

    In reply to: Blue Box over every Post, similar to widgets

    #14655

    This is the CSS for the sidebar header:

    .sidebar h3 {
    background: url(images/bg-sidebar-h3.png) left bottom repeat-x #204C91;
    background: -moz-linear-gradient(#3577B4, #204C91);
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#3577B4), to(#204C91));
    background: linear-gradient(#3577B4, #204C91);
    border-bottom: 1px solid #195392;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    color: #fff;
    *display: inline;
    font: bold 16px/20px arial;
    margin: -15px 0 5px -12px;
    padding: 7px 12px;
    text-shadow: 0 -1px 0 #555;
    width: 100%;
    zoom: 1;
    }

    You will need to add that as custom CSS for the elements you want to change.

    Mod

    In reply to: static home page

    #12184

    URL?

    Mod

    In reply to: Widgets change on read more pages

    #14897

    Where did you put the widgets on the front page? If you have “Enable alternate front page sidebar widget area” checked in Graphene options and then install widgets in the “Front page sidebar widget area” you will end up with the default widgets on all other pages besides the front page.

    Mod

    In reply to: How can i add adsense to the background image

    #14840

    I achieved something very similar using only a header widget and custom CSS. Look at my site.

    Here is the custom CSS, which controls the positioning of the header widget:

    .header-widget {
    position:fixed;
    top:10px;
    left:10px;
    }

    Then, enable the header widget, drag a text box onto it in the widget panel, and paste your adsense code into it. Save, and then view your site. It should be there.

    All done with no child theme, and no digging into PHP. It works! Try it!

    Ken

Viewing 10 posts - 5,791 through 5,800 (of 5,839 total)