Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Author Heateor Support

    (@heateor)

    Hi,
    Thanks for the appreciation.

    You can use following CSS selector to modify the font for commenting tabs:
    .theChampCommentingTabs li

    Thread Starter chalaim

    (@chalaim)

    I don’t quite understand. Is that the line of code I’m looking for in one of the plugin-files?

    Thread Starter chalaim

    (@chalaim)

    Ah! Found it! Awesome. Now to figure out how the heck to get the comment-box to the top instead of at the bottom of the comments ??

    Plugin Author Heateor Support

    (@heateor)

    We meant, you can apply the required style at the selector mentioned above. You can do this by placing following code at the end of “wp-content/themes/CURRENT_THEME/functions.php” before ?> (if ?> is not there, simply place the code at the end of the file) and save the file back. CURRENT_THEME is your active theme/child theme.

    function heateor_ss_custom_css(){
    ?>
    <style type="text/css">
    .theChampCommentingTabs li{
         font-weight:bold !important;
         font-size:20px !important
    }
    </style>
    <?php
    }
    add_action('wp_head', 'heateor_ss_custom_css');

    You can modify the above CSS according to your needs.

    Plugin Author Heateor Support

    (@heateor)

    how the heck to get the comment-box to the top instead of at the bottom of the comments ??

    For this you need to modify your theme’s comments template file. Doing this is not recommended as these changes would be undone when you will update your theme.

    Thread Starter chalaim

    (@chalaim)

    Thanks for the extremely speedy reply. Is it here (in that php-file) that I can change and add a header tag to the “Comment” title tag that is above?

    Plugin Author Heateor Support

    (@heateor)

    (in that php-file)

    Sorry, which PHP file?

    Thread Starter chalaim

    (@chalaim)

    The ..font-php where I made the changes to the tabs.

    Plugin Author Heateor Support

    (@heateor)

    Yes, that is the file.

    Thread Starter chalaim

    (@chalaim)

    Maybe it isn’t supported but if possible; could you tell me what line I need to change and how to add a H3-tag to it?

    Plugin Author Heateor Support

    (@heateor)

    The commenting label is already H3. You can check it in wp-content/plugins/super-socializer/js/front/facebook/commenting.js file by searching following code:
    <h3 id="theChampReplyTitle"
    This file contains the code for Social Commenting, if you want to change anything else.

    Thread Starter chalaim

    (@chalaim)

    Great! And again, thank you for this great support!

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome ??

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Change size and h-tag on comment labels etc’ is closed to new replies.