mythemes

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 649 total)
  • Author
    Posts
  • in reply to: uploading theme #4574

    mythemes
    Member

    Hi,

    To can upload the theme on your server is need increase Maximum File Upload Size:

    here is a good article about how to do that:

    How to Increase the Maximum File Upload Size in WordPress

    in reply to: How to remove uncategorized #4517

    mythemes
    Member

    Hi,

    You can not remove the category named “Uncategorize” this is standard WordPress feature.

    in reply to: Editor Gutenberg Support #4515

    mythemes
    Member

    Hi,

    Our theme and plugin Work toghether with Gutenberg editor. The problem can be from another plugin.

    in reply to: Edit CSS Stylesheet #4514

    mythemes
    Member

    Hi,

    You can use default WordPress feature.

    Go to your Admin Dashboard › Appearance › Customize › Additional CSS

    Here you can add you custom css and preview live changes.

    in reply to: Gallery #4513

    mythemes
    Member

    Hi,

    1.

    If you use WordPress 5
    Is need to add a gallery block

    2.

    If you use WordPress 4
    Is need to click on button add media and create a gallery from existing images or by uploading new images.

    in reply to: PHP 7.2 compartible #4508

    mythemes
    Member

    Hi,

    Yes Gardener theme is php 7.2 compatible.

    in reply to: Creating Child Theme for Cronus #4504

    mythemes
    Member

    Hi,

    Cronus is a child theme of Tempo WordPress Theme and from this reason is not possible to create a child theme for Cronus.

    in reply to: Menu and Footer Fonts #4494

    mythemes
    Member

    Hi,

    I’m sorry for this confusion.

    The custom css code below is to customize the menu items with bold weight.

    header.tempo-header div.tempo-topper div.tempo-navigation-wrapper div.tempo-menu-wrapper ul.tempo-menu-list>li a{
        font-weight: bolder !important;
        font-style: normal !important;
    }

    The custom css code below is to customize the color for footer links:

    aside.tempo-footer.light-sidebars div.widget.widget_pages ul li a,
    aside.tempo-footer.light-sidebars div.widget.widget_nav_menu ul li a{
        color: orange;
    }
    in reply to: Menu and Footer Fonts #4492

    mythemes
    Member

    Hi MrBill,

    I checked the case above and I can say the font weight property work good on my demo. I want specify the font weight on the buttons is less visible. To be more visible please try increase font size and line height.

    Also from Admin Dasshboard › Appearance › Customize › Header Elements – First Button and Second Button you can change appearances for Header Buttons ( Color, Transparency, hover Effect Color ).

    in reply to: Customize fonts on header buttons #4489

    mythemes
    Member

    With Cronus + Zeon and Easy Google Fonts plugin you can create custom font controls for your website.

    Step by step:

    1. Go to Easy Google Fonts Settings ( see the screenshot ):

      Easy Google Font Custom Control

    2. Add the first custom control by fill the Control Name for eg: Header Button 1
    3. Click the button Create Font Control
    4. Add the Control Selector ( css selector ) (see the screenshot ):
      Easy Google Font Custom Control / Header Button 1

      This is the selector for your Header Button 1:

      header.tempo-header div.tempo-header-partial .tempo-header-buttons .tempo-btn.btn-1
    5. Click the button Save Font Control
    6. Click the link create a new font control
    7. Add second custom control by fill the Control Name for eg: Header Button 2
    8. Click the button Create Font Control
    9. Add the Control Selector ( css selector ) (see the screenshot ):

      Easy Google Font Custom Control / Header Button 2

      This is the selector for your Header Button 2:

      header.tempo-header div.tempo-header-partial .tempo-header-buttons .tempo-btn.btn-2
    10. Click the button Save Font Control
    11. Go to Admin Dashboard › Appearance › Customize › Typography › Theme Typography:

      Here are your Header Buttons Custom Font Controls ( see the screenshot ):
      Easy Foogle Font / Use Custom Controls

    With these 2 controls now you can customize your buttons fonts appearance.

    in reply to: Customize fonts on header buttons #4487

    mythemes
    Member

    Hi,

    Please, contact us trough our contact form ( I need details like website url to debug ).
    I will explain you how create a custom option with Easy Google Fonts.

    in reply to: Menu overlay for Featured Image #4484

    mythemes
    Member

    Hi Bill,

    You can try next custom css:

    header.tempo-header div.tempo-header-partial.tempo-portfolio h1.tempo-headline{
        display: none;
    }
    header.tempo-header div.tempo-header-partial.tempo-portfolio nav.tempo-navigation{
        display: none;
    }
    in reply to: Logo Size #4481

    mythemes
    Member

    Hi,

    Recommended size:

    width: 533 px
    height: 66 px

    with css from example above you can increase the max height to 110 px.

    in reply to: Menu overlay for Featured Image #4480

    mythemes
    Member

    Hi Bill,

    You can use custom header for each page.

    To use custom header go to Edit Page and on the box Custom Header change the value of the Header Template from Default to Portfolio. After this add a Featured Image for this page and the image will be used as header image ( menu everlay the header image ).

    in reply to: Page area — full width #4479

    mythemes
    Member

    Hi Bill,

    I send you a solution for your problem through our Ticket system:

    In your case:

    you can use the gallery as a solution to publish images in 3 columns but below I done a custom css for you.

    So, the custom css enlarge your home page content to 1450px and put 3 images in a row.

    to use custom css put the code below to your Admin Dashboard > Appearance > Customize > Custom CSS:

    body.home.page-template-default.page div#tempo-page .container img{
        max-width: calc( 33.33333333% - 20px );
        max-width: -webkit-calc( 33.33333333% - 20px );
        max-width: -moz-calc( 33.33333333% - 20px );
        float: left;
        margin: 0px 10px 30px 10px !important;
    }
    @media (max-width: 991px ){
        body.home.page-template-default.page div#tempo-page .container img{
            max-width: calc( 50% - 20px );
            max-width: -webkit-calc( 50% - 20px );
            max-width: -moz-calc( 50% - 20px );
            float: left;
            margin: 0px 10px 30px 10px !important;
        }
    }
    @media (max-width: 540px ){
        body.home.page-template-default.page div#tempo-page .container img{
            max-width: 100%;
            float: none;
            margin: 0px auto 30px auto !important;
        }
    }
    @media (min-width: 1200px){
        body.home.page-template-default.page div#tempo-page .container {
            width: 1450px;
            max-width: 100%;
        }
    }
Viewing 15 posts - 1 through 15 (of 649 total)
[email protected]