Viewing 30 results - 82,351 through 82,380 (of 142,832 total)
  • Author
    Search Results
  • #767307
    spavli2
    Participant

    Hello,

    i checked all related topics, tried all provided solution, but none of them worked for me. I have a webpage provided below and I would like background images disappear on mobile device. I tried this quick CSS:

    @media only screen and (max-width: 989px) { div#funk_1 { background-image: none!important; } }

    However, the code didn’t have any effect.

    Could you please tell me, what am i doing wrong?

    Best,

    #767295

    Topic: Wrong icons showing

    in forum Enfold
    mikkijack
    Participant

    I did a widget for the social icons in my footer.

    I followed this one…

    The first 3 are right. However, I had to copy the 3rd one and edit the code for the last four.

    The links are right, the colors are right, but the icons are not right.

    My questions….
    1. How do I fix the icons on the last four?
    2. How do I remove the separator between them?
    3. How do I center them?

    • This topic was modified 8 years, 12 months ago by mikkijack.
    Saija
    Participant

    Hello

    building up Enfold one-page-site. It’s working fine otherwice but on laptop there’s a problem with left side main menu on Firefox and Chrome. Safari is fine.

    Main menu is on left side and it’s supposed be still when scrolling the content on right. That’s ok on desktop with all browsers (Safari, Firefox, Chrome). The problem comes out with laptop (only with Firefox & Chrome). Left side main menu disappears when scrolling the right side content (or if you click to some of the main menu links and the right side content runs lower).

    Any help for this?

    Thank’s,
    Saija

    #767264

    Hi Nikko,

    #top doesn’t work and even strangely grouping css selectors which use the same properties don’t work.

    Thanks for your help.

    Cheers, Alan

    #767255

    Hey,

    Try adding this css code:

    @media only screen and (max-width:767px) {
      .responsive #top .logo {
        float: left;
      }
    }

    Let us know if this fixes it.

    Best regards,
    Nikko

    #767254
    jabia
    Guest

    hey!
    i am using your enfold consulting demo theme for my website. i have an issue related menu when i clicked on welcome the top main sliders shows and when i clicked on service it will not go to anywhere as i want to add link in this menu. how to add link in that menu ? my main question is when i clicked on it will show service heading on the same home page. please help

    #767253

    Hi Alan,`

    Instead of body, try to use #top instead. Also you can group up css selectors that uses same properties for example this:

    #avia-menu {
    font-family: ‘akkuratregular’;
    }
    
    #mobile-advanced {
    font-family: ‘akkuratregular’;
    }

    can be changed to:

    #avia-menu,
    #mobile-advanced {
    font-family: ‘akkuratregular’;
    }

    :)

    Regards,
    Nikko

    #767232

    Hi,

    Oh sorry for that you can use this code instead:

    #top td .tribe_events {
        background: #333 !important;
        border-bottom: 1px solid white !important;
    }

    Best regards,
    Nikko

    #767219

    Hi,

    Try change the code I gave you from:

    #top td .tribe_events {
        background: #333 !important;
    }

    to:

    #top td .tribe_events {
        background: #333 !important;
        border-bottom: 0 !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #767213

    Hi,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      #top #wrap_all .grid-sort-container .flex_column.isotope-item {
        width: 100% !important;
        position: static !important;
        margin-bottom: 20px !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    #767211

    Hi,

    Just add this custom CSS code:

    
    #top .main_color .price {
     display: none !important;
    }
    

    Best regards,
    John Torvik

    #767200

    Hi Aleks,

    Will be closing this duplicate thread. :) We will be answering in your other thread: https://kriesi.at/support/topic/masonry-gallery-images-lightbox/

    Best regards,
    Nikko

    #767197

    Hi,

    Try to add this css code in Quick CSS (located in Enfold > General Styling):

    #top .av_tab_section a {
        text-decoration: underline;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #767187

    Hi,

    Can you try to disable Autoptimize, clear the cache and try to check it again. If it’s not fixed, can you try disabling all plugins to see if there’s no plugin conflict.

    Best regards,
    Nikko

    #767179

    Hi,

    I`ll provide some custom CSS code to change the column grid to 2X3 only in the iPad and only on this page.

    
    @media screen and (min-width: 766px) and (max-width: 769px) {
       .page-id-19 .avia-builder-el-20 .first {
        clear: initial !important;
     }
    
    .page-id-19 .avia-builder-el-20 .av_one_third {
      margin-top: 0 !important;
      margin-bottom: 30px;
      width: 50% !important;
     }
    
    .page-id-19 .avia-builder-el-20 .column-top-margin {
      margin-top: 0 !important;
     }
    }
    

    let me know if it worked :)

    Best regards,
    John Torvik

    #767176

    In reply to: Align content areas

    Hi,

    You’re welcome :) try changing this code I gave:

    #top .clear_none {
      clear: none !important;
      margin-left: 6%;
    }

    to:

    #top .clear_none {
      clear: none !important;
      margin-left: 6%;
      margin-top: 0 !important;
    }

    If the gap is too small change the margin-top value from 0 to 10px or try to experiment with the values. Hope this helps :)

    Best regards,
    Nikko

    #767170

    Hi,

    Try to make the min-height and max-height from Victoria’s code the same value, then add this below:

    
    /* For ipad/tablet in portrait mode */
    @media only screen and (max-width:960px) and (min-width:768px) {
      #top .avia-slider-testimonials.avia-testimonial-wrapper {
        min-height: 400px !important;
        max-height: 400px !important;
      }
    }
    
    /* For mobile devices */
    @media only screen and (max-width:767px) {
      #top .avia-slider-testimonials.avia-testimonial-wrapper {
        min-height: 600px !important;
        max-height: 600px !important;
      }
    }
    

    Just adjust the values as you see fit. HOpe this helps :)

    Best regards,
    Nikko

    #767167

    Hey DROR,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .responsive #top #info .flex_column_table {
        margin-top: 0 !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    #767159

    In reply to: Align content areas

    Hey JennyGr,

    Try to enable Custom Css Classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ then add a class name to the 1/2 colum, for example clear_none, then on Quick CSS (located in Enfold > General Styling) add this css code:

    #top .clear_none {
      clear: none !important;
      margin-left: 6%;
    }
    
    @media only screen and (max-width:960px) {
      #top .clear_none {
        margin-left: 0 !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    #767157

    Hi,

    You need to put the codes in different files/locations, the css code should be added in Quick CSS (located in Enfold > Styling) or your custom css file like style.css of your child theme:

    .main_menu ul:first-child > li > a { 
        font-size: 25px; 
    }
    
    #top .social_bookmarks li a { 
        font-size: 25px; 
    }
    
    strong.avia-testimonial-name {
       font-size: 20px !important;
    }

    These codes should go to functions.php:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Icon Label'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    Best regards,
    Nikko

    #767151

    Hey Terry,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top td .tribe_events {
        background: #333 !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #767149

    In reply to: LayerSlider WP

    Hi,

    We’ll notify Kriesi regarding the issue. The latest version of the plugin should be included in the next patch of the theme.

    // https://kriesi.at/support/topic/please-read-regarding-wordfence-layerslider-warning-on-enfold-4-0-3/

    Best regards,
    Ismael

    #767134

    Topic: PROBLEM WITH SLIDERS

    in forum Enfold
    S-edwards
    Participant

    Hi,
    I’m having big problems with your easy sliders – 1) full screen slider and the 2) full width easy slider

    1) full screen slider – it’s fine when I preview it but as soon as I move away from the page and back again the arrow controls disappear and the slider sticks – and no automatic transition onto the next sliders.
    I’ve stripped out everything else on the page that may be conflicting so it’s only the slider.
    I’ve updated wordpress and am using WordPress 4.7.3.
    I’m updated my theme – You are running the latest version! (4.0.3)
    I’ve un plugged all my plugins and reactivated them one by one.

    as I was still getting the problem I’ve made another page using the full width easy slider
    2) full width easy slider – it’s fine when I preview it but as soon as I move away from the page and back again the slider completely disappears.

    1. http://skywatcheraustralia.com.au/testsite/home-test-fullscreen-slider/
    2. http://skywatcheraustralia.com.au/testsite/home-test-fullwidth-easy-slider/

    I’ve also started putting together a layerslider animation but its totally over the top for the simple slide transisitions I need – plus the interface has totally changed since I last used it and is so unintuitive now.

    Help please!

    thanks
    sarah

    #767126

    I tried to get my ALB elements to work, and the options to appear on the builder end, but I could not get it to work!

    I worked through 3-4 of your other support topics on activating it via the PHP file with no results. I’m not sure what I’m doing incorrectly :(

    #767121

    Hi,

    Please try the solution that we provided in the following thread.

    // https://kriesi.at/support/topic/need-a-raw-codeblock-visual-element/#post-739681

    Best regards,
    Ismael

    Hi,
    OK, 2ed issue: your link was broken due to <center>tag so I made a
    <div>with this css:

    .logocen { width: auto; text-align: center; margin-top: -20px;}
    .av-share-box {margin-top: 20px !important; }

    as you see I also fixed the share box so everything is more in line.
    Best regards,
    Mike

    #767103

    Thanks,

    I have added that code, and have cleared the cache but the text is still not bigger? I have checked the website in chrome and in safari and it hasn’t taken effect? Not sure why this is happening, but maybe is there something in my other custom css that is interfering with it?

    
    .main_menu ul:first-child > li > a { font-size: 25px; }
    
    #top .social_bookmarks li a { font-size: 25px; }
    
    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Icon Label'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    
    strong.avia-testimonial-name {
       font-size: 20px !important;
    }
    

    Hi, Mike.

    Thanks for that. I figured I could do that for each layer as a workaround but that’s not normal operation, is it? Was hoping to get to the root cause of the issue rather than have to do that each time, since I frequently change the slides and associated links and the ‘Slide Linking’ option used to do the job just fine.

    I’ll do as you have done for the others but am hoping I can find the solution at some point soon.

    I appreciate the assistance. Do you or anyone else have any info on the 2nd issue I mentioned regarding linking the image ‘Copyright’ section or should I create another topic?

    Thanks.

    #767082

    Hi,
    I forgot to add this code in the General Styling > Quick CSS field:

    #top #wrap_all .av-social-link-snap_chat:hover a{
        color:#fff; 
        background-color: #FFFF00; 
    }

    Done now :)

    Best regards,
    Mike

    #767081

    Hey!

    You have to add a background color to the CSS selector.

    #top #wrap_all .av-social-link-snap_chat:hover a{
        color:#fff; 
        ba

    ckground-color: #FFFF00;
    }

    Also just to know it is making our work really hard, to have login and disable maintenance before manage to help you.
    Please if you need further help, disable the maintenance so we can be able to help faster.

    Regards,
    Basilis

    • This reply was modified 8 years, 12 months ago by Basilis.
Viewing 30 results - 82,351 through 82,380 (of 142,832 total)