Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Forum: Plugins
    In reply to: User file upload plungins?

    And just like magic the problem is solved. I love this forum.

    Thanks

    Thread Starter false1

    (@false1)

    I guess WPlistCal doesn’t like me anymore. After upgrading to WP 2.7.1 and WPLC 1.2.1 I get this error message at the top of each page:

    Warning: htmlspecialchars_decode() expects parameter 1 to be string, NULL given in /homepages/46/d122144821/htdocs/crostemp/wp-includes/compat.php on line 105

    Any Ideas about this?

    TIA

    Thread Starter false1

    (@false1)

    Thanks for getting back to me on this. Just so you know, I tried the plugin on another WP site running 2.6.2 and had the same problem. I didn’t want to have to upgrade for a number of reasons but maybe that’s my only choice. I’m suprised that no one else has run into this issue.

    I’m not sure what a member only ebook is but if you want a TOC maybe you could create a category with the name of the book then each chapter would by a post under that category. Then you could create a page (or post) that would list all the posts in that category as links. There are template tags to do that. The only thing you’d have to worry about is how to get them in the proper order if chapters aren’t added chronologically.

    or

    Make a page with the book title then each chapter would be a child of the title page. chapters could be accessed as a dropdown menu.

    my 2 cents

    Thread Starter false1

    (@false1)

    Yeah, it works now.

    I had to add this code to keep that category from displaying

    <?php if (in_category('85') && is_home() ) continue; ?>

    that query_posts is kinda particular, huh?

    thanks again

    Thread Starter false1

    (@false1)

    I posted the code to this address: https://pastebin.com/m13ab8d76

    Ohblue I looked at that post. I am using query_posts. that string of code didn’t help though. Thanks anyway.

    Thread Starter false1

    (@false1)

    Thanks MichaelH, it’s not working though.

    I put the code you listed in the same place on my current theme as it appears in the default theme.

    I deleted this piece of code that was in my current theme because it seemed redundant:
    <div class="Nav"><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?></div>

    The links appear but take me to the same posts. I don’t go to the older posts.

    If I change my theme to the default the code works fine.

    Thread Starter false1

    (@false1)

    thanks for the help drewactual,

    Your advice helped but the white background area was still bigger on the right hand side in ie 6 and 7. Plus my blog title was falling out of the box on the right side; ie 6. I had to adjust some margins and padding in order to get the content from going right to the edge of the white box.

    I finally realized that some the margin coding in the “header” tag was causing problems. So I basically removed all the padding and margin code for the header and description, floated both to the right, and added padding or margins, depending on what worked in all browsers, to place the text where I wanted.

    It took awhile but job well done. Also my blog name and description are now flush right. No big deal though. Here is the new code, commented as best as I could.

    Thanks for the help

    <code>
    
    body { 
    
     font-family: Verdana, Tahoma, Arial, Helvetica; font-size: 13px;
     background: #ebeae3; /*REMOVED BACKGROUND IMAGE BG.GIF*/
     margin: 0;
     padding: 0;
     color: #3c3c3c;
     }
    
    #box {
    	width: 940px;
    	margin: 0 auto;
    	padding: 10px 10px; /* NEW */
    	background: #ffffff; /*ADDED BACKGROUND COLOR*/
    }
    
    #top {      /*HOLDS HEADER IMAGE, TITLE "H1", AND SUBTITLE "description"*/
    width: 940px;
     background: url(images/header.jpg) no-repeat;
     height: 241px;
     margin: 0 auto; /*NEW*/
    /*margin-top: 10px;*/
     padding: 0;
     }
    
    /* Header */
    
    #header {
     float: right; /*modified*/
     width: 940px;
     margin: 120px 0 0 0; /*-was breaking out of margin-*/
     padding: 0;
     }
    
    #header h1 {
      float: right; /*NEW*/
     font-family: "Trebuchet MS", Arial, Verdana, Helvetica;
     text-transform: uppercase;
     margin: 0;
     padding: 0 20px 0 0; /*MODIFIED*/
     color: #f2f2f2;
     font-size: 20px;
     font-weight: normal;
     }
    
    #header h1 a, #header h1 a:link {
     color: #f2f2f2;
    
     /* margin-left: 400px; */
     }
    
    #header h1 a:hover {
     color: #fff;
     text-decoration: none;
     }
    
    #description {
      float: right; /*NEW*/
      color: #f9f9f9;
      font-size: 12px;
      padding: 0 20px 0 0; /*modified*/
     }
    </code>
    Thread Starter false1

    (@false1)

    Thanks for the help but that didn’t work. Actually the site is passable in IE7. The content starts to center itself as you open the window. IE6 is just worse. It seems like it would have something to do with how the basic “wrapper” divs are not centering themselves in the site. Here is the CSS:

    `
    body {

    font-family: Verdana, Tahoma, Arial, Helvetica; font-size: 13px;
    background: #ebeae3 url(images/bg.gif) repeat-y top center;
    margin: 0;
    padding: 0;
    color: #3c3c3c;
    }

    #box {
    width: 940px;
    margin: 0 auto;
    padding: 0px;
    }

    #top {
    width: 940px;
    background: url(images/header.jpg) no-repeat;
    height: 241px;
    margin-top: 10px;
    padding: 0;
    }

    #header {
    float: left;
    width: 940px;
    margin: 120px 0 0 100px;
    padding: 0;
    }

    #header h1 {
    font-family: "Trebuchet MS", Arial, Verdana, Helvetica;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: normal;
    }

    #header h1 a, #header h1 a:link {
    color: #fff;
    margin-left: 400px;
    }

    #header h1 a:hover {
    color: #f9f9f9;
    text-decoration: none;
    }

    #description {
    color: #f9f9f9;
    font-size: 12px;
    padding: 0 0 0 502px;
    }
    `

    The basic wrappers are called “box” and “top”
    Does this help?

    false1

Viewing 9 replies - 1 through 9 (of 9 total)