Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #999555

    Hello,
    I have my default font size set to 18px and everything looks fine except my blog page where the font is much larger?
    How do I fix that?

    #999634

    Hey Cynthia45,

    Please add the following CSS

    .entry-content p { font-size: 18px !important; }

    let us know if it works

    Best regards,
    Basilis

    #999859

    Hi Basilis,
    It didn’t work. I put the link to the page in the private content.
    It’s not the actual blog, but the page that shows all of the blogs.

    I’m also using the Elegant styling which I love but is there a way to put the author name under the title instead of after read more?

    Thanks!

    #1000041

    Hi Cynthia45,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .post .entry-content p {
      font-size: 18px;
    }
    

    You will need to modify the includes/loop-index.php to move the author under the title.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1002493

    Thanks Victoria
    How do I modify the includes/loop-index.php to move the author under the title?

    #1002711

    Hi Cynthia45,

    Try to move this code in includes/loop-index.php (line 245 – 279):

    echo "<span class='post-meta-infos'>";
    
    echo "<time class='date-container minor-meta updated' >".get_the_time(get_option('date_format'))."</time>";
    echo "<span class='text-sep text-sep-date'>/</span>";
    
    
    
        if ( get_comments_number() != "0" || comments_open() ){
    
        echo "<span class='comment-container minor-meta'>";
        comments_popup_link(  "0 ".__('Comments','avia_framework'),
                                "1 ".__('Comment' ,'avia_framework'),
                                "% ".__('Comments','avia_framework'),'comments-link',
                                "".__('Comments Disabled','avia_framework'));
        echo "</span>";
        echo "<span class='text-sep text-sep-comment'>/</span>";
        }
    
    
        if(!empty($cats))
        {
            echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
            echo $cats;
            echo '</span><span class="text-sep text-sep-cat">/</span>';
        }
    
    
        echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
        echo '<span class="entry-author-link" >';
        echo '<span class="vcard author"><span class="fn">';
        the_author_posts_link();
        echo '</span></span>';
        echo '</span>';
        echo '</span>';
    echo '</span>';

    and move it below this code in line 219:

    echo '<span class="av-vertical-delimiter"></span>';

    Hope it helps.

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.