• Thank you for this excellent plugin. It has definitely moved my site in the right direction. I have managed to adjust the size of the thumbnail photo, however I still have a couple of problems:

      The titles of the posts are too small; how do I increase the size?

      The actual content of the posts is missing; how do I get the body of the posts to display?

      I have the number of posts to display set to limit=”4″, but only two of my three posts is displaying; how do I get all three to display (up to a maximum of four)?

    You can view the page here: http://www.pc-handyman.net

    Thanks!

    • This topic was modified 8 years, 10 months ago by don0don.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter don0don

    (@don0don)

    Please, can one of the plugin developers help me with this? I need to get this fixed ASAP.

    Thanks!

    Thread Starter don0don

    (@don0don)

    Using the custom CSS, I figured out how to enlarge the titles of the posts and how to get all three of my current posts to display.

    I still would like to not display merely an excerpt from the posts, but the entire body of the post. How can I do that?

    Also, the Title and Subtitle of the custom section is not displaying correctly; it’s all very small and forced flush left over the featured image. I want these to display the same as the other section Titles and Subtitles on the page. How can I do that?

    Thanks!

    Thread Starter don0don

    (@don0don)

    Does anybody every actually respond to these requests for help?

    Thread Starter don0don

    (@don0don)

    I tried using the shot code in the Novelpro Custom Widget. That yielded the ability to get the proper section heading and subhead, but it caused the blog titles to be very, very small. Is there a short code for setting the font size of the blog post titles and making them flush left?

    • This reply was modified 8 years, 10 months ago by don0don.

    You dont do this within the plugin. You can wrap the title using wordpress’ ‘dynamic_sidebar_params’ filter For example:

    function prefix_filter_widget_title_tag( $params ) {
    
        $params[0]['before_title'] = '<h3 class="widget-title widgettitle">' ;
    
        $params[0]['after_title']  = '</h3>' ;
    
        return $params;
    
    }
    add_filter( 'dynamic_sidebar_params' , 'prefix_filter_widget_title_tag' );
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Adjusting title size, etc.’ is closed to new replies.