Viewing 15 posts - 1 through 15 (of 19 total)
  • Author
    Posts
  • birdwaves Friend
    #691618

    When I scroll my pages, the menu turns white, and the images reverts to the stock joomlart logo. Why does this happen, and where do I configure it?

    Thanks

    TomC Moderator
    #691681

    Try This . . . .

    Within file path —> /templates/ja_fixel/css/template-responsive.css
    at line 1141, modify as follows:


    .t3-mainnav.light-mainnav {
    background: #000 none repeat scroll 0 0;
    border-bottom: 1px solid #e7e7e7;
    transform: translate(0px, 100%);
    }

    THEN … at line 1189, modify as follows:


    .t3-mainnav.light-mainnav .navbar .nav > li > a {
    background: #000 none repeat scroll 0 0;
    color: #fff;

    opacity: 1;
    }

    THEN … at line 1159, modify as follows:


    .t3-mainnav.light-mainnav .navbar .nav > .active > a, .t3-mainnav.light-mainnav .navbar .nav > .active > a:hover, .t3-mainnav.light-mainnav .navbar .nav > .active > a:focus {
    background: #000 none repeat scroll 0 0;
    color: #fc615d;
    }

    THEN … within file path —> /templates/ja_fixel/css/template.css
    at line 1809, modify as follows:


    .t3-mainnav .navbar-inner {
    background: #000 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    min-height: 60px;
    padding: 0;
    }

    SAVE CHANGES – CLEAR CACHE – REFRESH PAGE

    Better ??

    TomC Moderator
    #749366

    Try This . . . .

    Within file path —> /templates/ja_fixel/css/template-responsive.css
    at line 1141, modify as follows:


    .t3-mainnav.light-mainnav {
    background: #000 none repeat scroll 0 0;
    border-bottom: 1px solid #e7e7e7;
    transform: translate(0px, 100%);
    }

    THEN … at line 1189, modify as follows:


    .t3-mainnav.light-mainnav .navbar .nav > li > a {
    background: #000 none repeat scroll 0 0;
    color: #fff;

    opacity: 1;
    }

    THEN … at line 1159, modify as follows:


    .t3-mainnav.light-mainnav .navbar .nav > .active > a, .t3-mainnav.light-mainnav .navbar .nav > .active > a:hover, .t3-mainnav.light-mainnav .navbar .nav > .active > a:focus {
    background: #000 none repeat scroll 0 0;
    color: #fc615d;
    }

    THEN … within file path —> /templates/ja_fixel/css/template.css
    at line 1809, modify as follows:


    .t3-mainnav .navbar-inner {
    background: #000 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    min-height: 60px;
    padding: 0;
    }

    SAVE CHANGES – CLEAR CACHE – REFRESH PAGE

    Better ??

    birdwaves Friend
    #691683

    Almost!

    The Joomlart logo still replaces my picture.

    birdwaves Friend
    #749368

    Almost!

    The Joomlart logo still replaces my picture.

    TomC Moderator
    #691696

    Look to file path —> /templates/ja_fixel/css/template-responsive.css
    at line 1924 . . .


    .t3-mainnav.light-mainnav .logo-image a {
    background-image: url("../images/logo-light.png") !important;
    }

    and file path —> /templates/ja_fixel/css/template.css
    at line 5133 . . .


    .light-mainnav .logo-image a {
    background: rgba(0, 0, 0, 0) url("../images/logo-light.png") no-repeat scroll 0 0;
    }

    Change the file path for the stock logo to the file path for your logo image

    TomC Moderator
    #749381

    Look to file path —> /templates/ja_fixel/css/template-responsive.css
    at line 1924 . . .


    .t3-mainnav.light-mainnav .logo-image a {
    background-image: url("../images/logo-light.png") !important;
    }

    and file path —> /templates/ja_fixel/css/template.css
    at line 5133 . . .


    .light-mainnav .logo-image a {
    background: rgba(0, 0, 0, 0) url("../images/logo-light.png") no-repeat scroll 0 0;
    }

    Change the file path for the stock logo to the file path for your logo image

    birdwaves Friend
    #691701

    Almost there. It doesn’t shrink to resize like it should.

    Strange that this isn’t all doable in the backend somewhere. I am wondering if the css overrides and php code is not necessary, but can be configured in t3 framework or something.

    birdwaves Friend
    #749386

    Almost there. It doesn’t shrink to resize like it should.

    Strange that this isn’t all doable in the backend somewhere. I am wondering if the css overrides and php code is not necessary, but can be configured in t3 framework or something.

    Saguaros Moderator
    #692021

    May I know how you want it to resize?

    Saguaros Moderator
    #749534

    May I know how you want it to resize?

    birdwaves Friend
    #692569

    You can see what I’m looking at if you resize your browser window to a medium size. The logo looks good at this point. But then scroll the page, and you will see that the logo image changes. I think that we are now seeing just the corner of the image at full size.
    Scroll back up, and the logo picture will then revert to it’s proper size.

    Secondly, If you resize the window once again, just before it changes to off-canvas menu You can see the logo picture changes to a wider format and does not fit. Scroll the window and the picture changes yet again.

    birdwaves Friend
    #749726

    You can see what I’m looking at if you resize your browser window to a medium size. The logo looks good at this point. But then scroll the page, and you will see that the logo image changes. I think that we are now seeing just the corner of the image at full size.
    Scroll back up, and the logo picture will then revert to it’s proper size.

    Secondly, If you resize the window once again, just before it changes to off-canvas menu You can see the logo picture changes to a wider format and does not fit. Scroll the window and the picture changes yet again.

    Saguaros Moderator
    #693148

    I see this css rule on your site:


    .light-mainnav .logo-image a .logo-img {
    display: none;
    }

    You can open the file: root/templates/ja_fixel/css/custom.css and add this css rule:


    .light-mainnav .logo-image a .logo-img {
    display: block;
    }

    Saguaros Moderator
    #749836

    I see this css rule on your site:


    .light-mainnav .logo-image a .logo-img {
    display: none;
    }

    You can open the file: root/templates/ja_fixel/css/custom.css and add this css rule:


    .light-mainnav .logo-image a .logo-img {
    display: block;
    }

Viewing 15 posts - 1 through 15 (of 19 total)

This topic contains 19 replies, has 3 voices, and was last updated by  Saguaros 9 years ago.

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