Forum Replies Created

Viewing 15 replies - 46 through 60 (of 149 total)
  • Thread Starter mythemes

    (@mythemes)

    just replace the constructor with this:

    function __construct()
    {
        parent::__construct( 'qTranslateXWidget', __('qTranslate Language Chooser', 'qtranslate'), array(
            'classname'     => 'qtranxs_widget',
            'description'   => __('Allows your visitors to choose a Language.', 'qtranslate')
        ));
    }
    
    Theme Author mythemes

    (@mythemes)

    You need customization with custom CSS

    go to Admin Dashboard ? Appearance ? Customize ? Others

    field Custom CSS

    use the code:

    div.mythemes-white div.content{
        padding-top: 75px;
        padding-bottom: 75px;
    }
    aside.mythemes-header-items div.header-item > div.widget{
        margin-top: 60px;
    
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }
    aside.mythemes-header-items div.header-item > div.widget:first-child{
        margin-top: 0px;
    }
    
    @media (max-width: 991px){
        aside.mythemes-header-items div.header-item:last-child{
            margin-top: 60px;
        }
    }
    
    @media (max-width: 767px){
        aside.mythemes-header-items div.header-item{
            margin-top: 60px;
        }
    
        aside.mythemes-header-items div.header-item:first-child{
            margin-top: 0px;
        }
    }

    75px – is top and bottom space between content and start / end of white area.

    60px – is space between widgets and sidebars ( if exists multiple or for small devices ).

    just replace values 75 and 60 with yours values for example 45 and 25.

    Theme Author mythemes

    (@mythemes)

    Can you contact me from our contact form ?

    https://mythem.es/contact/

    Theme Author mythemes

    (@mythemes)

    version 0.1.10 ( September 17, 2015 )
    ——————————————————-

    – fixed generate menu from pages and sub pages
    – fixed small admin dashboard css
    – fixed button “Upgrade to Premium”

    Theme Author mythemes

    (@mythemes)

    version 0.1.9 ( September 11, 2015 )
    ——————————————————-

    – fixed google fonts load with https:// and https://
    – fixed header image with parallax
    – fixed preload images and masonry init gallery
    – added support for header image
    – added option to block myThem.es Gallery Style ( customizer )
    – block control settings “header_textcolor”
    – block control settings “display_header_text”

    Theme Author mythemes

    (@mythemes)

    Please Help use increase the theme Rank !

    Theme Author mythemes

    (@mythemes)

    Try new version 0.0.4 !

    for new version you can disable / enable Header Headline and Header Description ( from header image )

    On free version you can’t disable the Blog Title and Blog Description

    BUT

    if you will add a small transparent image like a logo ( 1×1 pixels ) the Blog Title & Description disappear from menu bar ( will be visible only on browser tab )

    Theme Author mythemes

    (@mythemes)

    Try new version 0.0.4 !

    With new version you can:

    1. change the color for the buttons
    2. change the color for the Header Headline and Header Description
    3. Enable / Disable – Header Headline, Header Description, Header Buttons

    Menu High Lighter you can change only in premium version ! On the premium version you have control over each menu element.

    Theme Author mythemes

    (@mythemes)

    He just replace the line-height and font size for each type of device !

    /* LARGE SCREEN LIKE DESKTOP */
    @media (min-width: 1200px ){
        .mythemes-header a.header-title{
            font-size: 36px;
            line-height: 48px;
        }
        .mythemes-header a.header-description{
            font-size: 24px;
            line-height: 32px;
        }
    }
    
    /* MEDIUM SCREEN LIKE NOTEBOOK */
    @media ( min-width: 992px ) and (max-width: 1199px ){
        .mythemes-header a.header-title{
            font-size: 33px;
            line-height: 44px;
        }
        .mythemes-header a.header-description{
            font-size: 22px;
            line-height: 30px;
        }
    }
    
    /* MEDIUM SCREEN LIKE HORIZONTAL TABLET */
    @media ( min-width: 768px ) and ( max-width: 991px ){
        .mythemes-header a.header-title{
            font-size: 30px;
            line-height: 40px;
        }
        .mythemes-header a.header-description{
            font-size: 20px;
            line-height: 28px;
        }
    }
    
    /* MEDIUM SCREEN LIKE VERTICAL TABLET */
    @media ( min-width: 481px ) and ( max-width: 767px ){
        .mythemes-header a.header-title{
            font-size: 27px;
            line-height: 36px;
        }
        .mythemes-header a.header-description{
            font-size: 18px;
            line-height: 26px;
        }
    }
    
    /* MEDIUM SCREEN LIKE IPHONE */
    @media ( max-width:480px ){
        .mythemes-header a.header-title{
            font-size: 24px;
            line-height: 32px;
        }
        .mythemes-header a.header-description{
            font-size: 16px;
            line-height: 24px;
        }
    }
    Theme Author mythemes

    (@mythemes)

    You have some customizations but the customizations not are made in smart mode:

    is need to use

    @media (){
        ...
        css rules
        ...
    }

    to specify the css rules for the different screens size ( width )

    ex:

    I use this rules, you can overwrite and put it to your Custom css field:

    @media (min-width: 1200px ){
        .mythemes-header a.header-title{
            font-size: 36px;
            line-height: 48px;
        }
        .mythemes-header a.header-description{
            font-size: 24px;
            line-height: 32px;
        }
    }
    @media ( min-width: 992px ) and (max-width: 1199px ){
        .mythemes-header a.header-title{
            font-size: 33px;
            line-height: 44px;
        }
        .mythemes-header a.header-description{
            font-size: 22px;
            line-height: 30px;
        }
    }
    @media ( min-width: 768px ) and ( max-width: 991px ){
        .mythemes-header a.header-title{
            font-size: 30px;
            line-height: 40px;
        }
        .mythemes-header a.header-description{
            font-size: 20px;
            line-height: 28px;
        }
    }
    @media ( min-width: 481px ) and ( max-width: 767px ){
        .mythemes-header a.header-title{
            font-size: 27px;
            line-height: 36px;
        }
        .mythemes-header a.header-description{
            font-size: 18px;
            line-height: 26px;
        }
    }
    @media ( max-width:480px ){
        .mythemes-header a.header-title{
            font-size: 24px;
            line-height: 32px;
        }
        .mythemes-header a.header-description{
            font-size: 16px;
            line-height: 24px;
        }
    }
    Theme Author mythemes

    (@mythemes)

    I tested the comments and I am sure the users ( logged in or guest ) can reply to comments!

    Maybe the problem is on your website settings !

    Try our demo: https://test.mythem.es/cannyon-wordpress/2015/06/03/phasellus-lobortis-tincidunt-tempor/

    Theme Author mythemes

    (@mythemes)

    The image is centered and it is show on full width.

    Theme Author mythemes

    (@mythemes)

    I made some changes to the header images ( css and js ). And your issues can be from old cache.

    I want to do a debug !
    please give me the url to your website !

    Theme Author mythemes

    (@mythemes)

    The default content exists only in sidebars !
    The default content is hardcoded in theme files. But you can:

    1. Disable all default content and fill with your content.
    2. Replace only on section or more section with your content.

    1. To disable the content go to Admin Dashboard > Appearance > Customize > Additional – here uncheck option “Display default content”

    2. To replace Header – Front Page default content ( from 3 sidebars )

    go to: Admin Dashboard > Appearance > Widgets

    here you have multiple sidebars ( can be collapsed ) and also you have next sidebars:



    Header – First Front Page Sidebar
    Header – Second Front Page Sidebar
    Header – Third Front Page Sidebar

    IMPORTANT: if the option “Display default content” is enabled and the Header Sidebars is empty then will be displayed the default content ( hardcoded ) from this sidebar.

    so, just is need to get and put a text widget to a header sidebar and fill the Text widget with you Title and with your Content.

    IMPORTANT: The widgets are placed in the left and the sidebars are placed in the right ( Appearance > Widgets ).

    Theme Author mythemes

    (@mythemes)

    You can find custom css field in Admin Dshboard > Appearances > Customize > Others

Viewing 15 replies - 46 through 60 (of 149 total)