• Resolved Nick25

    (@nick25)


    Hey,need some help with the following…

    I can see that the color of ‘Primary Color’ is inherited from categories-next page-mouse over color too. Can i add any specific code to change their color manually?

    Im not interested to have comments etc,i was able to remove some of them,but i cant remove the following:At the top of each post,there is a counter on the right. Plus on “You may also like” i can see the green icon with the comment counter. How can i remove them?

    Last,any way to change the size of the featured images (thumbnails) on main page? I tried changing the size on theme functions,then re-genarate images,but no change.

    Thx.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The comment count on thumbnails can be disabled in Theme Options > Blog with a click.

    The comment-bubble on single pages up top right can be found in /inc/page-title.php

    <li class="comments"><a href="<?php comments_link(); ?>"><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></a></li>

    For featured image size, in functions.php you’ll find the size:

    add_image_size( 'thumb-large', 720, 340, true );

    As usual, using the sample child theme available in the help dropdown in theme options and then doing overrides of functions and files is the best method – so your changes won’t dissapear when you update the theme.

    categories-next page-mouse

    I don’t understand that one.

    Thread Starter Nick25

    (@nick25)

    Thx for the asnwers.

    Yes,a while after i posted here,i found how to disable count on thumbnails.

    I mean that if the follow area is blue,then categories name on main page are blue too etc. This might help… s29.postimg.org/bl24sq85v/image.jpg

    I will try that about featured images and i will let you know if i fixed it correctly.

    For primary color, all of these CSS values change:

    ::selection { background-color: #3b8dbd; }
    ::-moz-selection { background-color: #3b8dbd; }
    
    a,
    .themeform label .required,
    #flexslider-featured .flex-direction-nav .flex-next:hover,
    #flexslider-featured .flex-direction-nav .flex-prev:hover,
    .post-hover:hover .post-title a,
    .post-title a:hover,
    .s1 .post-nav li a:hover i,
    .content .post-nav li a:hover i,
    .post-related a:hover,
    .s1 .widget_rss ul li a,
    #footer .widget_rss ul li a,
    .s1 .widget_calendar a,
    #footer .widget_calendar a,
    .s1 .alx-tab .tab-item-category a,
    .s1 .alx-posts .post-item-category a,
    .s1 .alx-tab li:hover .tab-item-title a,
    .s1 .alx-tab li:hover .tab-item-comment a,
    .s1 .alx-posts li:hover .post-item-title a,
    #footer .alx-tab .tab-item-category a,
    #footer .alx-posts .post-item-category a,
    #footer .alx-tab li:hover .tab-item-title a,
    #footer .alx-tab li:hover .tab-item-comment a,
    #footer .alx-posts li:hover .post-item-title a,
    .comment-tabs li.active a,
    .comment-awaiting-moderation,
    .child-menu a:hover,
    .child-menu .current_page_item > a,
    .wp-pagenavi a { color: #3b8dbd; }
    
    .themeform input[type="submit"],
    .themeform button[type="submit"],
    .s1 .sidebar-top,
    .s1 .sidebar-toggle,
    #flexslider-featured .flex-control-nav li a.flex-active,
    .post-tags a:hover,
    .s1 .widget_calendar caption,
    #footer .widget_calendar caption,
    .author-bio .bio-avatar:after,
    .commentlist li.bypostauthor > .comment-body:after { background-color: #3b8dbd; }
    
    .post-format .format-container { border-color: #3b8dbd; }
    
    .s1 .alx-tabs-nav li.active a,
    #footer .alx-tabs-nav li.active a,
    .comment-tabs li.active a,
    .wp-pagenavi a:hover,
    .wp-pagenavi a:active,
    .wp-pagenavi span.current { border-bottom-color: #3b8dbd!important; }

    For secondary color:

    .s2 .post-nav li a:hover i,
    .s2 .widget_rss ul li a,
    .s2 .widget_calendar a,
    .s2 .alx-tab .tab-item-category a,
    .s2 .alx-posts .post-item-category a,
    .s2 .alx-tab li:hover .tab-item-title a,
    .s2 .alx-tab li:hover .tab-item-comment a,
    .s2 .alx-posts li:hover .post-item-title a { color: #82b965; }
    
    .s2 .sidebar-top,
    .s2 .sidebar-toggle,
    .post-comments,
    .jp-play-bar,
    .jp-volume-bar-value,
    .s2 .widget_calendar caption { background-color: #82b965; }
    
    .s2 .alx-tabs-nav li.active a { border-bottom-color: #82b965; }
    .post-comments span:before { border-right-color: #82b965; }

    You can find CSS for all styling options in /functions/dynamic-styles.php

    Thread Starter Nick25

    (@nick25)

    Thanks. About images,i had to edit the thumb-medium and about sidebar css etc,i only changed .wp-pagenavi a color and it worked.

    Hi all,

    I gave it a good shot, but can’t seem to make the size of the featured image any smaller. Apparently you got it working, can you post more information how you achieved this?

    Simply changing add_image_size( ‘thumb-large’, 720, 340, true ); didn’t work, but then again I’m a newbie!

    My site is https://www.roelantvos.com/blog

    You need to regenerate thumbnails once after changing the size.

    Thanks Alexander; I can influence the image size itself now. Still not 100% sure how I can make the feature image appear smaller itself (takes half the page now) but I’ll try uploading a smaller size image as well.

    When I first put footer images with captions on my Hueman Theme site, it was fine. Four footer images, which are available even tho′they recommend use three. When I later changed footer 4, the caption no longer appeared on the site and when I went back to WP the caption was gone from there too. I tried numerous times, always with the same result.

    I switched to having only 3 footer items, as recommended, changed footer 1 – and now I can′t get the caption to stay there either.

    Sorry this is so long?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Some questions’ is closed to new replies.