Forum Replies Created

Viewing 30 posts - 61 through 90 (of 163 total)
  • Author
    Posts
  • in reply to: Small bar above main menu text colour on mobile #1004179

    Nikko,

    Brilliant! Thank you very much. I ended up adding the following code which got it working exactly as on the laptop:

    #top #header_meta a {
    color: black !important;}
    #top #header_meta ul:first-child > li > a:hover {
    color: white !important;}
    #top #header_meta .current-menu-item a {
    color: white !important;}

    Thanks again!!

    in reply to: Vertically align fullwidth easyslider image #1003963
    This reply has been marked as private.
    in reply to: Sticky header with full width sub menu on iPad #1003785

    Ismael,

    Thank you for your response. I´ve just written a long response to say what was going wrong and then as I went on the iPad to get some screen shots it´s working!!!

    I haven´t got your code above in the css but it´s working anyway so that´s great. I think the problem was that it doesn´t stick straight away. The page has to stop scrolling and then the menu appears at the top and then scrolls with the page. I was obviously not stopping the page previously and giving the menu the chance to then appear!!

    Thanks for your help!!

    Best regards

    in reply to: Small bar above main menu text colour on mobile #1003780
    This reply has been marked as private.
    in reply to: Small bar above main menu text colour on mobile #1002799

    Jordan,

    I´m afraid I can´t provide a screen shot as the page isn´t reacting as I need it to. I have main menu 2 positioned within the enfold child secondary menu which is above the main menu at the top of the screen. On larger screens the background is green and the text is black and then changes to white when that menu option is the active page or when the mouse is hovering over that menu item. However on the mobile screens the background is green but the text is white and then doesn´t change colour when the page is active.

    Thank you for your help!

    in reply to: Small bar above main menu text colour on mobile #1002767
    This reply has been marked as private.
    in reply to: Small bar above main menu text colour on mobile #1002660
    This reply has been marked as private.
    in reply to: Sticky header with full width sub menu on iPad #1002654

    Ismael,

    I´ve used your above code to get the full width sub-menu to stick to the top of the screen for the ipad in landscape mode but it´s having no effect. The menu shows up in the correct place on the page but just scrolls up past the top of the page like the rest of the page contents and doesn´t stick.

    I got round this problem for smaller screens with the burger menu by making the menu stick to the top from page load (which isn´t ideal but I can´t find a way to get it to respond the same on mobile screens as it does on larger screens) with the following css:

    @media only screen and (max-width: 479px) {
    .responsive #top .av-submenu-container {
    position: fixed !important;
    top: 120px !important;}
    #top .av-subnav-menu > li > a {
    font-size: 11px;
    color: #56882d!important;
    font-weight:700 !important;}
    #top #av-custom-submenu-1 .av-menu-button > a .avia-menu-text {padding: 4px;}
    #top .av-subnav-menu > li {margin: 0px 0px 0px 0px;}
    }

    @media only screen and (min-width: 480px) and (max-width: 990px) {
    .responsive #top .av-submenu-container {
    position: fixed !important;
    top: 120px !important;}
    #top #av-custom-submenu-1 .av-menu-button > a .avia-menu-text {padding: 4px;}
    #top .av-subnav-menu > li {margin: 0px 10px 0px 10px;}
    }

    I added your above code for ipad landscape mode with the adjustment as follows:

    @media only screen and (min-width: 991px) and (max-width: 1024px) {
    .responsive #top .av-submenu-container {
    top: auto !important;
    position: relative !important;
    height: auto;
    min-height: 0;
    margin-bottom: -1px;}
    }

    but it´s had no effect. Any ideas? The page that the problem is occuring on is below!

    Thanks for your help!!

    Victoria,

    That’s worked perfectly! Thank you so much!

    in reply to: Specific easy slider fixed height and centered vertically #1002055

    Mike,

    Spot on! Worked like a charm! Thanks a lot for your awesome help!!

    This reply has been marked as private.
    in reply to: Full width Submenu not sticky on mobile #1001563

    Victoria,

    Ok no problem. Thank you so much again for your continued excellent support!

    Best regards

    in reply to: Full width Submenu not sticky on mobile #1001317

    Victoria,

    I´ve put the sticky main menu code back in as this is what I want on all pages so the submenu now can´t be seen unless I adjust your top: 0 to top:120. However, as I say what I´m after is for the submenu to appear further down the page (where it is positioned) and for it to stay fixed in that position in relation to the page rather than the screen (as it does on larger screens) and then for it to stick to the top when it reaches the top of the page.

    Is this a possibility?

    Many thanks again!

    This reply has been marked as private.

    Victoria,

    I´ve played around with this code and found that the following has worked great. I´ll leave the code here in case it helps someone else:

    @media only screen and (max-width:767px) {
    #top .flex_column.av_one_half.av-half {
    margin-left: 6% !important;
    width: 47% !important;}
    #top .flex_column.av_one_half.first.av-half {
    margin-left: 0 !important;}
    #top .flex_column.av_one_half.av-half {
    width: 45%;
    float: left;
    display: inline-block!important;}
    }

    Many thanks again!!

    in reply to: sticky submenu in mobile #1001190

    Victoria,

    That´s awesome thank you. I had to adjust the code slightly to the following but it´s now working great:
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive.html_mobile_menu_tablet.html_header_top #top #main {padding-top: 112px !important;}
    .responsive.html_mobile_menu_tablet #top #wrap_all #header {position: fixed; background-color: white!important;
    opacity: 1; top: 0;}
    }

    Thank you so much again!!

    in reply to: Full width Submenu not sticky on mobile #1001182

    Victoria,

    Thank you for your help however 2 things:

    1. The submenu is now not being shown as it is being hidden behind the main menu as I have the main menu sticking to the top with the following code:
    @media only screen and (max-width:767px) {
    #top {padding-top: 112px !important;}
    .responsive #top #wrap_all #header {
    position: fixed;
    top: 0;}
    }

    2. I tried taking the above code out so that the main menu was no longer sticky but the submenu then just stuck to the top from the beginning of the page loading.

    What I´m after is for the submenu to appear further down the page (where it is positioned) and staying fixed in that position in relation to the page rather than the screen (as it does on larger screens) and then sticking to the top when it reaches the top of the page.

    Would that be possible?

    Thanks so much again!!

    in reply to: Full Width Submenu Force Mobile at Specific Width #1000881

    Victoria,

    Brilliant that has worked great. Thank you so much for your support and patience!!

    Best regards

    in reply to: Full width Submenu not sticky on mobile #1000879

    Hi guys,

    This code works great to make the full width submenu stick to the screen on smaller screens but its sticking to the bottom of the screen from the top of the page. I´ve tried changing the “top” number to “120px” instead of “565px” which makes it stick to the bottom of the main menu but I´d like it to stick to the top of the page as you scroll down past it like it does on the large screens.

    Any suggestions on how I can modify it for this to happen. Please see the page below.

    Many thanks again

    in reply to: sticky submenu in mobile #1000855
    This reply has been marked as private.
    in reply to: sticky submenu in mobile #1000821
    This reply has been marked as private.
    in reply to: Full Width Submenu Force Mobile at Specific Width #1000714
    This reply has been marked as private.

    Victoria,

    Thanks very much. Is there any update yet?

    Thanks again!

    Basilis,

    Please see the link to the webpage below. It would appear that with this code I´ve got the area that the photos are shown in restricted so that the text below the slider doesn´t move up and down as the photos change:

    .lmcpracticeeasy {
    height: 100px !important;
    overflow: hidden;
    }

    However not all the photos fill this space and on some of the photos a white space is left under the photo. How can I get all the photos to always fill the space all of the time?

    Please note that these photos are only being shown on mobile devices and not on larger screens!

    Many thanks again for your excellent support!

    in reply to: sticky submenu in mobile #1000445

    Hi guys,

    I´ve used the code above:

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

    which works perfectly on mobile screens but when I alter the 767px to 990px to get it to work on the ipad burger menu it has no effect!!? Any suggestions on what I can do to get the same effect on ipad portrait (max-width 990px screens) would be awesome.

    Thanks in advance

    in reply to: Avia Caption Title Background width css over-ride #1000421

    Victoria,

    Awesome worked a treat. Thanks so much!!

    in reply to: Full Width Submenu Force Mobile at Specific Width #1000289

    Victoria,

    Do you have the code for my question above re: the padding around the words on full width submenu?

    Many thanks

    in reply to: Change Fullwidth Break Point for section ID to custom value #999780
    This reply has been marked as private.
    in reply to: Full Width Submenu Force Mobile at Specific Width #999751
    This reply has been marked as private.
    in reply to: Fullwidth social icons #999505
    This reply has been marked as private.
Viewing 30 posts - 61 through 90 (of 163 total)