Buy me a coffee

Change a part of Site Title size

Suppose you have this site title text and need to change the size of “ASC”

Change A Part Of Site Title Size 01 Min

#1. First, use this code to Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("a#site-title").each(function() {
    $(this).html($(this).html().replace(/ASC/g, "<span>ASC</span>"));
});
});
</script>

Change A Part Of Site Title Size 02 Min

#2. Use this code to Custom CSS box

a#site-title span {
    font-size: 14px;
}

Change A Part Of Site Title Size 03 Min

#3. Result

Change A Part Of Site Title Size 04 Min