• Sitebuilder

    (@valetrends)


    So, I was testing different colors and stuff in the theme Multipurpose business..

    I am not sure but I think the background in this theme is supposed to be white and not grey as it has become in mine ? You see around the edges of my article.

    I am trying to get the background back to the same color as the white background color in the page-boxes(which is white). As you can see, the color has become sort of grey in the background. I don’t want that contrast.
    And despite changing the background color to white, this area stays grey. How can I change it so it becomes the same whitish color as the contrasting white next to it?

    Also I wonder how I could load in Times new roman as a font for my reading text? I can’t fint that font.

    Also how could I change the article headline’s sizes on the page? Maybe with some code or something?

    I also wonder why EB Garamond does not look good when I load my website on chrome? But when I check it in forefox EB Garamond looks great. Is it a way around this to make EB Garamond good looking in all browsers?

    I have now changes the font of my headlines and title because EB Garamonds did not look good in chrome. But I want to use that font for my headlines and title if it is possible to make it good looking.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author themeinwp

    (@themeinwp)

    Hi @valetrends,

    Regarding Your queries:

    1) I am not sure but I think the background in this theme is supposed to be white and not grey as it has become in mine ? You see around the edges of my article.

    Response: The easiest solution would be to override the default behaviour via custom CSS.

    From your WordPress Dashboard, Navigate to Appearance ? Customize ? Additional CSS and add below CSS:

    .light-scheme .featured-blog-list, .light-scheme #secondary, .light-scheme .site-content .author-info .profile-image:after, .light-scheme .top-header, .light-scheme .side-panel, .light-scheme .breadcrumb-bgcolor {
        background: #fff !important;
    }

    2) Also I wonder how I could load in Times new roman as a font for my reading text? I can’t find that font.

    Response: Times New Roman is called a web safe font so it can directly be called via CSS. Kindly refer to https://www.w3schools.com/css/css_font.asp

    3) Also how could I change the article headline’s sizes on the page? Maybe with some code or something?

    Response: Yes, you can edit via custom CSS

    For eg

    .entry-title-big {
        font-size: 48px;
    }

    or like

    .site h1 {
        font-size: 32px;
    }
    
    .site h2 {
        font-size: 28px;
    }

    3) EB Garamond font rendering issue:

    Response: We’re unable to replicate such issue on our end (on our local machine). “EB Garamond” is a google font so i don’t think these sort of issue exist.

    Not sure, but I guess this may help:

    html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    or give a shot to this one as well:

    body {
    -webkit-text-stroke: 0.7px;
    }

    Keep changing 0.7 if desired result not achieved.

    If you’ve any further questions or feedback? Just hit reply and we’ll gladly help.

    Best Regards,

    Thread Starter Sitebuilder

    (@valetrends)

    I have noticed that if I use EB Garamond it does not look good in Chrome but it does look good in Firefox. Any idead how to make that font work in all browers?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multipurpose business’ is closed to new replies.