Support » Themes and Templates » Still need help with child theme please

  • okay, activated the child theme and trying to figure out how to style the footer with the text smaller and the lines not spaced so far apart and change the background color of just the footer. Would also like to change style and color of the horizontal rules, and the size and style of the post headers. I would also like to know how to justify the posts paragraphs for a cleaner look and maybe make the headers for the side menu, i.e. Comments, Categories, etc. a little larger ? I know how to do the css code, just not sure how to do it to override the parent style sheet? When looking at the parent style sheet, it is very complicated and confusing…any help would be greatly appreciated, thanks !!

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to provide us with a URL so we are better able to assist you.

    Secondly, that is a large list of requests, but if you provide the URL I will do my best.

    Thread Starter celrod

    (@celrod)

    Okay, I figured out how to do everything but change the size of the headers for the side menu i.e. Recent Posts, Recent Comments, Categories, etc. and is it possible to style the subscribe button and text box for subscriptions. And do you know how to style an RSS feed?

    the blog is located at
    tradingbetweenthelines.com/blog/

    thanks !!

    To change the font-size of the widget titles you just need to add something like this to your CSS file (child theme css file ideally)

    .widget-title { font-size: 1.2em; }

    you may also choose to make the font-weight bold by adding this line:

    .widget-title { font-size: 1.2em; font-weight: bold; }

    This is a great tool that I use when I need to quickly generate CSS for a sepcific button. Style the button how you would like on that site, generate the code and then copy and paste all of the provided code in to your main Style.CSS file.

    Then assign the class that is provided to your button.

    http://css3button.net/

    I have never personally styled an RSS feed and thought it was not entirely possible, as RSS is just a stream of raw data. But a quick search turned up this segment of code:

    function rss_post_thumbnail($content) {
    global $post;
    $thumbcontent = '';
    if (has_post_thumbnail($post->ID)) {
    	$thumbcontent = ''.'<div style="float:left;margin:0 10px 5px 0;"><a>ID ) . '">' . get_the_post_thumbnail($post->ID,'thumbnail') .	'</a></div>';
    }
    $thumbcontent = $thumbcontent . '<div><span>' . get_the_content() . '</span></div><a>ID ) . '">Continue reading...</a>'.'';
    return $thumbcontent;
    }
    add_filter('the_excerpt_rss', 'rss_post_thumbnail');
    add_filter('the_content_feed', 'rss_post_thumbnail');

    Reference:http://wordpress.org/support/topic/how-to-i-styleformat-my-rss-feed?replies=4

    Thread Starter celrod

    (@celrod)

    won’t changing the button style in the parent style sheet get lost anytime the theme is updated? does that subscription widget have a specific divide or something I can copy to the child style sheet and alter there?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Still need help with child theme please’ is closed to new replies.