• There is an odd shadow on the text entries for my blog date, author and the tags beneath the entries. How do I get rid of this and just make the font standard black?
    My website is dlwoodonline.com. You can see the problem on the home page.
    Thanks so much.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Please use the following code in Theme Options -> Custom CSS

    .entry-meta {
        color: #000;
        text-shadow: none !important;
    }
    .entry-meta a {
        color: #000;
    }

    Screenshot of result. https://prntscr.com/83of6e

    Thanks!

    Thread Starter dplumwood

    (@dplumwood)

    Thanks so much – when I added it it took away the shadow, but it’s still a weird font, much thicker than the one you show on the screenshot with the changes. Where do I change the fonts for that text (the blog date, author and tags below)? You can see it at dlwoodonline.com.

    Thanks!!
    Deanna

    Hi,

    You are not suppose to put the following codes in your Theme Options -> Custom CSS

    <div id="mc_embed_signup">
    <form action="//dlwoodauthor.us11.list-manage.com/subscribe/post?u=007642692da6da329754abd6c&id=d25436f258" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
        <div id="mc_embed_signup_scroll">
    
        <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
        <div></div>
        <div class="clear"></div>
        </div>
    </form>
    </div>
    
    <!--End mc_embed_signup-->
    
    <div id="fb-root"></div>
    (function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));

    And also, you are not suppose to put comments without the proper syntax in Theme Options -> Custom CSS
    The following is wrong.
    Fixing odd shadow around text:

    All those will break the css code in dynamic generated css file.

    Only proper css code is allowed. You won’t see any error notice on your website when css codes are broken, you only see weird styles.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Odd shadow on fonts for blog date, author and tags beneath’ is closed to new replies.