Viewing 30 posts - 1 through 30 (of 32 total)
  • Author
    Posts
  • #1261804

    Hi everyone, could we have the partner logo sliding element show logos stacked on mobile?

    Right now it’s showing them one by one sliding on mobile. I’ve added the home page link in below private content link field. Please review on mobile device.

    #1262359

    Hi,

    I added following code to bottom of Quick CSS field

    @media only screen and (max-width: 480px) {
    #top .aviaccordion-slide {
        left: 0 !important;
        transform: none !important;
        position: unset !important;
    }
    
    #top .aviaccordion {
        position: initial;
    }}

    Please review your website

    Cheers!
    Yigit

    #1262423

    Hi Yigit, the Accordion Slider is now covering the footer first left column menu links with header menu called “Home” on mobile. Please refer to attached mobile Screenshot provided in the link.

    Could you kindly help resolve?

    #1262921

    Hi Yigit, could you please help resolve above Request?

    #1263025

    Hi,

    I added following code to bottom of Quick CSS as well

    #footer {
        margin-top: 390px;
    }

    Please review your website.

    Best regards,
    Yigit

    #1263092

    Appreciate it my friend. It worked fantastic.

    1. The main header column got squeezed horizontally. Can you help resolve please?

    DESKTOP
    – Header Logo is overlapping the header menus (Screenshot called Squeezed Header & Footer in below link)
    – Footer also got squeezed
    – You had previously added the following CSS Code to fix the same issue. ( #top #header .flex_column { width: 100%; margin-left: 0;} although it stopped working somehow.

    For the immediate fix, I added the following CSS Code: #top .container { width: 85%; max-width: none; }

    MOBILE:
    – The footer and related links are now also squeezed on mobile as well.
    – Could you kindly help resolve?

    2. Cookie Message and mode.

    Could you kindly help to only show the ACCEPT and LEARN Buttons on Cookie message on load?
    – The full cookie model message pops up on page load.

    Cookie Message fonts and buttons.
    – Small and inconsistent font style and size.(Screenshot called cookie)
    – Buttons do not work
    – Misaligned accept and learn more button

    Thanks you, kindest regards and hope you’re keeping safe.

    #1263149

    Yigit,

    1. I wanted to send you additional mobile and desktop screenshots that headers and footers are all over and not aligned.

    2. I also added the home page id to the following code you added. The code that was added was affecting all pages.

    .page-id-16071 #footer { margin-top: 365px !important;}

    3. I left the following two codes for the header, footer and page alignments. Not sure if it’s correct or not.

    #top #header .container {
    width: 85%;
    max-width: none;
    }
    #top #header .flex_column { max-width: 100%; margin-left: 0;}

    Can you kindly review and resolve at your earliest convenience?

    Appreciate it.God Bless.

    #1263150

    So sorry Yigit. One last item.

    4. MENU HOVER & ACTIVE PAGE MANU COLORS
    The main header menu hover color has also changed to much lighter color. It only shows the #dddddd color on active page, not on menu hover.

    Screenshot is called: Menu Hover & Active Page Hover

    Screenshot also attached.

    #1263151

    Here is the combined list to make it easier. :-)

    1. DESKTOP AND MOBILE HEADER & FOOTER ALIGNMENT

    – The main header column got squeezed horizontally. Can you help resolve please?
    – Mobile and desktop screenshots attached that headers and footers are all over and not aligned.

    DESKTOP
    – Header Logo is overlapping the header menus (Screenshot called Squeezed Header & Footer in below link)
    – Footer also got squeezed
    – You had previously added the following CSS Code to fix the same issue. ( #top #header .flex_column { width: 100%; margin-left: 0;} although it stopped working somehow.
    – For the immediate fix, I added the following CSS Code: #top .container { width: 85%; max-width: none; }

    MOBILE:
    – The footer and related links are now also squeezed on mobile as well.
    – Could you kindly help resolve?

    2. COOKIE MESSAGE AND MODAL.

    Could you kindly help to only show the ACCEPT and LEARN Buttons on Cookie message on load?
    – The full cookie model message pops up on page load.

    COOKIE MESSAGE FONT AND BUTTONS
    – Small and inconsistent font style and size.(Screenshot called cookie)
    – Buttons do not work
    – Misaligned accept and learn more button

    3. HOME PAGE ALIGNMENT

    – I also added the home page id to the following code you added. The code that was added was affecting all pages.

    .page-id-16071 #footer { margin-top: 365px !important;}

    – I left the following two codes for the header, footer and page alignments. Not sure if it’s correct or not.

    #top #header .container {
    width: 85%;
    max-width: none;
    }
    #top #header .flex_column { max-width: 100%; margin-left: 0;}

    4. MENU HOVER & ACTIVE PAGE MANU COLORS
    The main header menu hover color has also changed to much lighter color. It only shows the #dddddd color on active page, not on menu hover.

    – Screenshot is called: Menu Hover & Active Page Hover
    – Screenshot also attached.

    Thank you in advance my friend and god bless you for all your help. :-)

    #1263416

    Hi Yigit, I have added additional screenshots. Please let me know when you’ve had a chance to resolve.

    #1263563

    Hi Yigit, hope all is well. Could you kindly look into above at your convenience?

    The home page footer and header are also not same as other pages header and footers on MOBILE.

    Thank you in advance.

    #1263875

    Hi,

    Sorry for the delay. It would be a lot easier for us moderators if you would open a single thread for each inquiry. You will also get a faster response if the moderators could focus on a single inquiry instead of multiple unrelated questions.

    Now to answer your first inquiry, you may have to move the modification inside a css media query so that it only affects the desktop, and so that the footer container remains as is and not squeezed on mobile view.

    @media only screen and (min-width: 768px) {
        #top .container { 
           width: 85%; 
           max-width: none; 
        }
    }

    Please open new tickets or threads for the remaining inquiries.

    Best regards,
    Ismael

    #1263877

    Hi Ismael, I’ve added the code you provided and it’s still the same.

    Yigit has backend access we’ve already provided and has been working with us on the revisions.

    Items #1 and #3 are similar issues on mobile and desktop.

    Only item #2 is the cookies issue.

    Could you kindly help resolve ?

    We submitted these over there days ago. Would greatly appreciate if we can keep and not open various threads to follow-up.

    We’ve also created various screenshots attached in below link.

    #1263995
    This reply has been marked as private.
    #1264039

    Hi,

    1- I added following code to bottom of Quick CSS field to switch to mobile menu on screens below 1350px

    /* Activate burger menu */
    @media only screen and (max-width: 1350px) {
    #top #header .av-main-nav > li.menu-item  {
        display: none!important;
    }
    #top #header .av-burger-menu-main {
        cursor: pointer;
        display: block!important;
    }}
    @media only screen and (min-width: 990px) {
    .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { 
    background-color: white; 
    }}

    You can adjust container width in Enfold theme options > General Layout > Dimensions tab. Please do not compare footer and header container width to the width of your Grid Row elements as their width is not dependent on container width.

    2- Cookies were disabled, I went to Enfold theme options and enabled them. It has the text and Accept and Learn buttons. Attached a screenshot in private content field below.

    3- Thanks for adding page ID to target homepage only, I forgot to do that. I am not sure if I understood the issue you are having now though and it is pretty difficult find correct screenshots out of 44 of them :) Could you please delete the ones that are no longer relevant?

    Best regards,
    Yigit

    #1264045
    This reply has been marked as private.
    #1264197

    Hi,

    Each time I log in, I am fixing CSS errors. Those fixes make CSS work as expected but also makes CSS conflicts visible. Please ask the person who is adjusting CSS to check their code on http://csslint.net/ for errors :)

    1&2&3- I changed the code to following one

    @media only screen and (min-width: 990px) {
    .header_color.av_header_transparency .av-hamburger-inner, .header_color.av_header_transparency .av-hamburger-inner::before, .header_color.av_header_transparency .av-hamburger-inner::after { 
    background-color: white; 
    }}
    .av-hamburger-box strong {
        display: block;
        text-align: center;
        position: absolute;
    }
    @media only screen and (min-width: 990px) {
    .header_color.av_header_transparency .av-hamburger-box strong {
    color: white; 
    }}

    4- If you would like to switch to 1 column on screens below 990px instead of 767px, please add following code to bottom of Quick CSS field

    @media only screen and (max-width: 990px) {
    #footer .flex_column {
        width: 100%;
        margin-left: 0;
    }}

    5- “Home page footer container squeezed different width than other pages (mobile and tablet)” was probably related to broken CSS as it currently shows up fine on my end.

    Please review your website.

    Best regards,
    Yigit

    #1264514
    This reply has been marked as private.
    #1264809
    This reply has been marked as private.
    #1265784
    This reply has been marked as private.
    #1266907

    Hi,
    Sorry for the very late reply and thanks for the links, for #1, Tablet Header is no longer sticky on tablet I found your css has a max-width of 767px, please try changing this to 988px.

    media only screen and (max-width: 767px){
    .responsive #top #wrap_all #header {
        position: fixed !important;
    }
    }

    For #2 & #3, please try adding this css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a {
        height: 80px !important;
        line-height: 80px !important;
        top: -10px;
    }
    }

    For #4, please try adding this css:

    @media only screen and (max-width: 768px) {
    #top.home #footer > div {
    	padding: 0 !important;
    }
    }

    For #5 your mobile menu social icons have the class only-mobile and this css only allows it to show on tablets and above:

    @media only screen and (min-width: 768px) {
    .only-mobile {
        display: none;
    }
    }

    Did you add this css? Please try removing it.

    Best regards,
    Mike

    #1266908
    This reply has been marked as private.
    #1266951

    Hi,
    Ok, if you include an admin login in the private content area, I could apply the above solutions for you to check.

    Best regards,
    Mike

    #1266954
    This reply has been marked as private.
    #1267117

    Hi,
    Thank you, I made these adjustments and re-checked that these seem to work correctly, please clear your browser cache and check.

    Best regards,
    Mike

    #1267190
    This reply has been marked as private.
    #1268117

    Hi,
    Sorry for the late reply, for the homepage socket please try this css in your quick css field:

    @media only screen and (max-width: 767px) {
    #top.home #socket > div {
    	padding-left: 0 !important;
    	padding-right: 0 !important;
    }
    }

    For your footer widgets, at 768px, please see the first screenshot below it highlights the margin-left of the columns to give a better view of the column widths. So this is using:

    margin-left: 6%;
        width: 20.5%;

    In the second screenshot, I tried to max the column width and reduced the margin to 1%, but it is not enough for your link “MANAGED VULNERABILITY” to form one line.

    margin-left: 1%;
        width: 24%;

    The widgets don’t have any inner padding or margin that can be removed, so for this screen width and the length of these links, they don’t fit.

    Best regards,
    Mike

    #1268149
    This reply has been marked as private.
    #1268408

    Hi,

    I fixed 1 error in Quick CSS field and 4 errors in Appearance > Customize > Additional CSS fields. CSS errors break CSS code and cause issues. As I mentioned before, please ask the person who is adjusting CSS to check their code on http://csslint.net/ for errors as most of the back and forth here is caused by those CSS errors :)

    Fixing CSS helped with socket issue. For 3rd column of footer, I added following code to bottom of Quick CSS field

    @media only screen and (max-width: 1014px) and (min-width: 769px) {
    #footer div .av_one_fourth:not(.first) {
        margin-left: 4%;
    }
    #footer div .av_one_fourth:nth-child(3) {
        width: 26.5%;
    }
    }
    

    Please review your website!

    Best regards,
    Yigit

    #1269706

    Yigit, appreciate both your help with the revisions.
    Did you or Mike try to reset the admin password I provided you for changes?

    Our security monitoring team detected Suspicious activity or a users trying to rest password from IP address http://51.254.103.70/

    Please close off this ticket. Have a wonderful and safe holiday season.

Viewing 30 posts - 1 through 30 (of 32 total)
  • The topic ‘Partner Logo On Mobile’ is closed to new replies.