Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #454724

    Hi

    I have a few questions regarding the mobile version:

    1. I am using full width easy slider on the homepage. On the mobile version the height is too small. How can I increase the height?
    Also, how can I Keep the caption title and remove the text and display the button?
    2. On mobile homepage. How can I remove the phone info from the top of the page and add a full width button with the phone number beneath the fullwidth easy slider?
    3. I am using the fullwidth easy slider at the top of the other pages. It does not display properly. How can i reduce the height and text size and button size so all the content displays?

    Appreciate your help with these requests,

    Very best
    Mike

    #455235

    Hey brooks!

    1. If you do this you will have black bars on top and bottom of the video but you could try adding this to a codeblock element in the page.

    <style type = "text/css">
    .avia-slideshow, .avia-slideshow-inner { min-height: 300px; 
    </style>

    I would try the fullscreen slider out.

    2. You can hide the phone number with this CSS.

    @media screen and (max-width: 767px) {
    #header_meta { display: none !important; }
    }

    For the fullwidth button, add it to your page and let us know when your done and we’ll give you some CSS to have it only display on small screens.

    3. Send us a link to the exact page please. I checked your other pages but couldn’t find it.

    Best regards,
    Elliott

    #457577
    This reply has been marked as private.
    #457941

    Hi!

    1. Since your using video there would just be an empty space beneath it on mobiles if you set a minimum height.

    2. Your using a button there. You can change the font color in the shortcode options. To get it to call someone when clicked on then set the URL to “tel:1234567890”.

    3. So your wanting to completely hide the header on that page for mobiles? Try dragging a codeblock element to the page content and add this inside.

    <style type = "text/css">
    @media screen and (max-width: 767px) {
    #header { display: none !important; }
    }
    </style>

    Cheers!
    Elliott

    #457997

    Hi Elliot,

    1. On mobile it does not use video, it swaps out for an image.

    2a. Can you provide css to only display on mobile.
    2b. I have this code so the whole button has the same color.
    [av_button_big label='619.237.3490' description_pos='below' link='manually,http://' link_target='' icon_select='yes-left-icon' icon='ue799' font='mobile2' custom_font='#00b395' color='theme-color-subtle' custom_bg='#444444' color_hover='theme-color-subtle' custom_bg_hover='#444444'][/av_button_big]

    I would like the font to be white.

    3. This removes the header?

    Thanks

    Brooks

    #458531

    Hi!

    1. Try this CSS.

    .avia-slideshow { min-height: 500px !important; }
    

    2. Do this, http://kriesi.at/documentation/enfold/custom-css-and-quick-css/, and then give it a CSS class and then add it inside the previous CSS code I gave you.

    <style type = “text/css”>
    @media screen and (max-width: 767px) {
    #header { display: none !important; }
    .your_class { display: none !important; }
    }
    </style>

    3. That’s not what your wanting? Take a screenshot and highlight exactly what your trying to do so we can get a better idea.

    Regards,
    Elliott

    #458594

    Hi!

    1. I added this code to the code block and it gives the right depth.
    <style type = “text/css”>
    .avia-slideshow, .avia-slideshow-inner { min-height: 240px;
    </style>

    However, the image does not fill the depth. There is a black border at the bottom.
    Also, the codeblock show as a black space on the screen. How do i resolve this?

    2. Im lost. just to confirm, I want the phone number to display on mobile and not on desktop. Also, i want the actual number to be white and the icon to be green
    Hope that makes sense.

    3. It was #av_section_1 i was looking to hide. This works now, thanks!

    I appreciate your help

    Very best
    Brooks

    #459247

    Hi!

    1.) Please use the Quick CSS fiel for this code instead.

    2.) If you want to hide it on desktop then use this code instead (again in Quick CSS field):

    @media screen and (min-width: 1024px) {
    div#text-2 {
    display: none;
    }}
    

    and adjust the “min-width” value as needed.

    Your number is white and icon green, so it looks exactly as you want, right?

    Cheers!
    Andy

    #459636

    Hi Andy!

    Thanks for your reply!

    1. The image still does not fill the area on mobile. There is a black space beneath the image.

    2. The phone number i want to hide is below the fullwidth easy slider (Not in the header). The icon and text are both green. I want the icon green and text white (same as the number i header).

    Cheers!
    Brooks

    #460938

    Anybody?

    #460959

    Hey!

    please refuse from bumping into your own thread, as it pushes your thread behind in our queue and we can’t provide a faster reply in this case (because your thread gets marked as “answered”).

    I get a “Gateway Timeout: can’t connect to remote host” error when trying to open your website. Can you please check?

    1. Can you please show us what you mean? always provide a link showing what you are talking about (screenshots would help as well).

    2.) We would need to see it, but not possible as your website does not load for me.

    Let us know when you and your website is ready.

    Cheers!
    Andy

    #460967
    This reply has been marked as private.
    #461853

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (min-width: 769px) {
    .home #av_section_1 {
      display: none;
    }}
    .home #av_section_1 a * {
      color: white!important;
    }
    @media only screen and (max-width: 768px) {
    .avia-caption-content>p {
      display: none;
    }}

    Best regards,
    Yigit

    #462414
    This reply has been marked as private.
    #462415

    Hi!

    JFYI, I also tried a different approach:

    1. I went to the slider and in the SLIDES tab I added the #ID testWhy
    2. I went to my Quick CSS and I added:

    @media screen and (max-width: 767px) {
    #testWhy { height: 500px !important; }
    }

    Didn’t work either, I don´t get it :( hope you can help!

    Thanks! :)

    #462736

    Hey!

    try this code to control it:

    @media screen and (max-width: 767px) {
    li.av-video-slide.av-video-service-youtube.av-loop-video.av-mobile-fallback-image.av-video-stretch.av-single-slide.slide-1.active-slide.av-video-playing.av-video-events-bound {
    height: 290px !important;
    }
    ul.avia-slideshow-inner {
    height: 300px !important;
    }}
    

    and adjust if needed.

    Best regards,
    Andy

    #463613

    Hi Andy!

    I added the code and lost the image. I tried various options but the image remained the same.

    Any ideas?

    Cheers!

    #463990

    Hi!

    sorry @brooks I did not notice that another person (@therqworld) was bumping into your thread, so my previous code was made for him …
    I added this code into your Quick CSS field:

    @media screen and (max-width: 767px) {
    .avia-slide-wrap {
    height: 208px !important;
    }}
    

    To get rid off the black space below your video use this:

    @media screen and (max-width: 767px) {
    div#av_section_1 {
    margin-top: -59px !important;
    }}
    

    If you wish to hide captions on mobile:

    @media screen and (max-width: 767px) {
    .avia-caption-content.av_inherit_color {
    display: none;
    }}
    

    Hope this is how you wish to have it. Otherwise would be awesome to see a screenshot showing exactly what you want to achieve.

    Best regards,
    Andy

    • This reply was modified 9 years, 4 months ago by Andy.
Viewing 18 posts - 1 through 18 (of 18 total)
  • You must be logged in to reply to this topic.