Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • spelabuda Friend
    #718939

    Hey,

    please let me know why the main menu stopped appearing on mobile devices?
    http://tennis-force.com/index.php/en/

    thank you!

    Ninja Lead Moderator
    #719116

    I added the css style below into templates/ja_charity/css/custom.css file

    @media (max-width: 767px) {
    .t3-mainnav {
    background: #000
    }

    .fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "f0c9";
    }

    .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    .navbar-toggle {
    background: red;
    }
    .navbar-default .navbar-nav > li > a {
    color: #fff !important;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff !important;
    }
    }

    Let me know if it helps

    Ninja Lead Moderator
    #752923

    I added the css style below into templates/ja_charity/css/custom.css file

    @media (max-width: 767px) {
    .t3-mainnav {
    background: #000
    }

    .fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "f0c9";
    }

    .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    .navbar-toggle {
    background: red;
    }
    .navbar-default .navbar-nav > li > a {
    color: #fff !important;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff !important;
    }
    }

    Let me know if it helps

    spelabuda Friend
    #719123

    Hi,

    this is absolutely NOT OK!

    please change back to the color scheme. Why does the menu have yellow background? it was grey like the top bar?

    ffd733 – this color should not be anywhere on the site.

    buttons were orange and now they are yellow.

    I just wanted the MENU ICON to show up on mobile not have original color scheme.

    spelabuda Friend
    #752930

    Hi,

    this is absolutely NOT OK!

    please change back to the color scheme. Why does the menu have yellow background? it was grey like the top bar?

    ffd733 – this color should not be anywhere on the site.

    buttons were orange and now they are yellow.

    I just wanted the MENU ICON to show up on mobile not have original color scheme.

    spelabuda Friend
    #719214

    I turned off the development mode in templates option. that fixed the issue.

    but i can see that the site does not load Font Awesome Icons. Is there something that can be done about that?

    thanks,

    spelabuda Friend
    #752947

    I turned off the development mode in templates option. that fixed the issue.

    but i can see that the site does not load Font Awesome Icons. Is there something that can be done about that?

    thanks,

    Ninja Lead Moderator
    #719262

    <em>@spelabuda 499544 wrote:</em><blockquote>I turned off the development mode in templates option. that fixed the issue.

    but i can see that the site does not load Font Awesome Icons. Is there something that can be done about that?

    thanks,</blockquote>

    I tried to download T3 System Plugin version 2.5.1 and install it on your site but I got this bug.

    <blockquote>
    Error
    There was an error uploading this file to the server.
    Maximum PHP file upload size is too small: This is set in php.ini in both upload_max_filesize and post_max_size settings of your PHP settings (located in php.ini and/or .htaccess file).

    Unable to find install package
    </blockquote>

    You can extend upload_max_filesize and post_max_size from php.ini file and install T3 System Plugin again, hope it will help to solve the problem with Font Awesome Icons

    Ninja Lead Moderator
    #752995

    <em>@spelabuda 499544 wrote:</em><blockquote>I turned off the development mode in templates option. that fixed the issue.

    but i can see that the site does not load Font Awesome Icons. Is there something that can be done about that?

    thanks,</blockquote>

    I tried to download T3 System Plugin version 2.5.1 and instaledl it on your site but I got this bug.

    <blockquote>
    Error
    There was an error uploading this file to the server.
    Maximum PHP file upload size is too small: This is set in php.ini in both upload_max_filesize and post_max_size settings of your PHP settings (located in php.ini and/or .htaccess file).

    Unable to find install package
    </blockquote>

    You can extend upload_max_filesize and post_max_size from php.ini file and install T3 System Plugin again, hope it will help to solve the problem with Font Awesome Icons

    spelabuda Friend
    #721238

    After you’ve made the update the event feature slider is now completely messed up on the first page. (New projects)

    can you please correct this?
    the title should be above the image, the date should not be shown because it should be the same color as backgroudn and the button READ More should be below the image!

    i worked really hard to get this to display correctly.

    so this is current state and is not correct.

    spelabuda Friend
    #753620

    After you’ve made the update the event feature slider is now completely messed up on the first page. (New projects)

    can you please correct this?
    the title should be above the image, the date should not be shown because it should be the same color as backgroudn and the button READ More should be below the image!

    i worked really hard to get this to display correctly.

    so this is current state and is not correct.

    Ninja Lead Moderator
    #721358

    I have never touched on event feature slider on your site. My solution above only affects menu layout on mobile device as #2 post

    About the problem with event feature slider module, you can apply the following tweak:

    Open templates/ja_charity/local/acm/news-featured/css/style.css file

    find and change

    .event-featured-slider .event-slider .event-item {
    text-align: left;
    padding: 28px;
    position: relative;
    }

    to

    .event-featured-slider .event-slider .event-item {
    text-align: left;
    padding: 0px;
    position: relative;
    }

    Let me know if it helps

    Ninja Lead Moderator
    #753696

    I have never touched on event feature slider on your site. My solution above only affects menu layout on mobile device as #2 post

    About the problem with event feature slider module, you can apply the following tweak:

    Open templates/ja_charity/local/acm/news-featured/css/style.css file

    find and change

    .event-featured-slider .event-slider .event-item {
    text-align: left;
    padding: 28px;
    position: relative;
    }

    to

    .event-featured-slider .event-slider .event-item {
    text-align: left;
    padding: 0px;
    position: relative;
    }

    Let me know if it helps

Viewing 13 posts - 1 through 13 (of 13 total)

This topic contains 13 replies, has 2 voices, and was last updated by  Ninja Lead 9 years ago.

We moved to new unified forum. Please post all new support queries in our New Forum