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

    1. How to change fonts in Canard theme? It seems like there is no such a service in the appearance. Why? Where to find it?

    Font changes aren’t a core part of a theme’s functionality, however, you could have a search through the plugin repository to find a plugin that will provide that option to you:

    https://www.ads-software.com/plugins/search.php?type=term&q=theme+font+change

    2. I want to widden my posts width by moving author info, share buttons and other info from the left sidebar down after the post. How and where to fix it?

    You could use some custom CSS to widen the main content area of your single posts.

    To add custom CSS, firstly set up a child theme or activate a custom CSS plugin. As you have Jetpack installed already, you could enable its custom CSS module and then navigate to Appearance > Edit CSS.

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    @media screen and (min-width: 1380px) {
        .single .entry-content, div#jp-relatedposts, .single .entry-content, .comments-area, .entry-footer, .footer-widget-inner .widget {
            width: 100%;
            float: left;
        }
    
        .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
            width: 31%;
        }
    }

    Let me know how that goes or if any extra questions come up.

    Thanks!

    Thread Starter liludallas

    (@liludallas)

    ooook) I will have to spend some time on this)

    Yes! I have so far one more question. mobile version of site in “appearance” and a real mobile version on Samsung Galaxy 3 and 5 looks totaly different.

    How to fix it?

    I can see that you have Jetpack’s mobile theme active on your site.

    Jetpack’s mobile theme is intended for use with theme’s that aren’t “mobile-ready” by default. As Canard is designed to adapt based on the size of the screen it’s being viewed, it’s not necessary for you to have a separate mobile theme active.

    Navigate to Jetpack > Settings and then search for the mobile theme to deactivate it. Your site will then look the same on mobile devices as it does when you preview via Appearance > Customize.

    Thread Starter liludallas

    (@liludallas)

    Success!

    Perfect! I’m mark this thread as resolved but feel free to start a new thread on this forum if you have any extra questions. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Fonts, Share buttons’ is closed to new replies.