Viewing 30 results - 85,381 through 85,410 (of 142,738 total)
  • Author
    Search Results
  • #736293

    Hey kbartel1,

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

    @media only screen and (max-width:767px) {
        #top #wrap_all #main .avia-no-border-styling {
            background-size: auto 100% !important;
        }
    
        #top #wrap_all .main_color h1 {
            font-size: 36px;
            line-height: 0.8;
        }
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #736292

    Hi,

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

    @media only screen and (max-width:960px) {
    	#top.home #av_section_5 .flex_column.av_one_fourth {
    		margin: 0 1% !important;
    		float: left;
    		clear: none;
    		width: 48% !important;
    	}
    
    	#top.home #av_section_5 .flex_column.av_one_fourth.first, 
    	#top.home #av_section_5 .flex_column.av_one_fourth.avia-builder-el-last {
    		display: none;
    	}
    	
    	#top.home #av_section_5 .flex_column.av_one_fourth a.avia-button.avia-size-x-large {
    		font-size: 1em !important;
    		padding: 1.2em 0.9em;
    		min-width: 90%;
    	}
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #736289

    In reply to: Custom html element

    Hi,
    the problem is the optin form at the center of the page, under the photo:
    on pc-desktop it is ok, but on mobile I wish that every element occupy 100% of the width of the screen.
    below I put the credentials

    • This reply was modified 9 years, 1 month ago by diegox80.
    #736279

    In reply to: Center column

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #736278

    Hi,

    Great, glad you got it working. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #736271

    Hi,

    Great, glad you found a solution. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    Thanks very much, Nikko

    it works greatly on mobile
    so If I want the laptop view to the same, what to do?
    just delete the below texts?
    @media only screen and (max-width:767px) {

    #736256

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #736251

    In reply to: custom header

    Hey,

    Sorry, I forgot about centering it. Try adding this css code in Quick CSS:

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
        color: #002FA7;
    }
    
    #top #avia-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    Let us know if it helps :)

    Regards,
    Nikko

    #736248

    Hi,

    Thank you for using Enfold.

    Where do you want to put the search icon? It’s disabled because the default menu container is hidden on mobile view. If you want, you can add it inside the mobile menu container. Please add this filter in the functions.php file:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5" style="display: none;">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    And the following code in the Quick CSS field.

    @media only screen and (max-width: 767px) {
    	#menu-item-search-mobile {
        	display: block !important;
    	}
    }

    Best regards,
    Ismael

    Hi,

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

    @media only screen and (max-width:767px) {
      #top .main_color .product-addon textarea {
        background: #fff;
      }
    
      h3.addon-name, 
      .addon-description p {
        font-size: 12px;
      }
    
      #top .product-addon .form-row label, 
      #top .product-addon .form-row label span {
        color: #d55448;
    }
    
      #top.single-product .single_variation_wrap {
        margin-left: 20px;
      }
    }

    Just adjust the left margin as you see fit. Hope this helps :)

    Cheers!
    Nikko

    #736237

    Hi,

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

    .responsive .single-post .container {
        max-width: 100% !important;
    }
    
    .responsive .single-post .entry-content-wrapper .container {
        max-width: 1250px !important;
    }
    
    #top #main .entry-content-wrapper .entry-footer, 
    #top #main .related_posts, 
    #top #main .comment-entry {
        width: 100%;
        max-width: 1250px !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
        float: none;
    }

    Hope this helps :)

    Best regards,
    Nikko

    Hi,

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

    @media only screen and (max-width:767px) {
        .responsive #top.home .av_header_transparency.av_alternate_logo_active .logo a > img {
            opacity: 0;
        }
    
        .responsive #top .av_header_transparency .logo img.alternate {
            display: block;
        }
    }

    Hope this helps :)

    Cheers!
    Nikko

    #736223

    Hi,

    Yes, this is definitely possible. We actually have it documented in the following link.

    // http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    First, you need to turn on the custom css class field then edit the elements that you want to display or not display on mobile or desktop. Add the corresponding selector as instructed in the documentation.

    Best regards,
    Ismael

    #736212

    Hi,

    I checked the settings and the Enfold > General Layout > Dimensions > Responsive Site option is disabled. Was that intentional? We enabled it back and I don’t see any issue except for the logo image, which is expected because of the following css code.

    .icon_img img {
        max-width: 480px;
    }

    You can replace it with the following css code so that it will not affect the mobile view.

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
      .icon_img img {
        max-width: 480px;
      }
    }

    Could you please provide a screenshot of the “phone” issue?

    Best regards,
    Ismael

    #736205

    Hi,

    Thank you for using Enfold.

    Please look for this css modification.

    #top.rtl #header.header-scrolled .social_bookmarks li:last-child {
        border-right: 1px solid #e1e1e1 !important;
    }
    

    .. replace it with:

    #top.rtl #header .social_bookmarks li:last-child {
        border-right: 1px solid #e1e1e1 !important;
    }
    

    And where can I find the page with the social share section? Please provide a url. It probably requires a simple css modification.

    Best regards,
    Ismael

    Hi,

    You can create a custom shortcode for the categories. Add the following code in the functions.php file.

    function custom_categories_shortcode() {
    	global $post;
    	ob_start();
        	the_terms( $post->ID, 'category', '<strong>Categories: </strong>', ' , ' ); 
    
    	$output = ob_get_clean();
        return $output;
    }
    add_shortcode('the_post_categories', 'custom_categories_shortcode');

    Edit the post, insert a text or codeblock then use the following shortcode:

    [the_post_categories]
    

    More info here:

    // https://kriesi.at/support/topic/question-about-transferring-set-up-to-our-actual-site/#post-643745

    Best regards,
    Ismael

    #736191

    Hey wbitsolutions,

    I’m guessing this relates to your previous topic that I just replied to? I would recommend you to switch to the mobile menu at an earlier stage instead of making the menu items smaller.

    Best regards,
    Rikard

    #736189

    Hi,

    I’m sorry for the late response.

    Plus can I increase the padding above the logo as it looks a bit squashed at the top of the container?

    Please use this css code to move the logo downwards a bit.

    .logo img {
        top: 10px;
    }
    

    And you will actually get a faster response if you open a new ticket or topic for each of your inquiry. Other moderators will be able to check on it much faster.

    p.s. can you think of any reason why the following code in quick css

    What is the “advanced button styling”?

    On this site, I would like each of the colour sections to fill the screen so that the arrow to jump to next section is always placed at the bottom and it looks/works really sleek. Is this possible as when I selected the “100% of browser height” in the row settings it works fine for the first section…

    There’s quite a few css modifications added on the theme, specifically in the header so the “scrolldown” calculation is off. Please edit the js > avia.js file then look for the avia_smoothscroll function. Look for this code on line 756:

    fixedMainPadding = parseInt($('html').css('margin-top'),10);
    

    .. replace it with:

    fixedMainPadding = parseInt($('html').css('margin-top'),10) + 100;
    

    Let us know if it changes anything.

    Best regards,
    Ismael

    #736174

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #736148
    StormCreek
    Participant

    Hello!

    I used the information from this post: https://kriesi.at/support/topic/change-content-if-user-is-logged-in/

    However it’s not completely working. On the bottom of the page I have two images with text headings above them — they both have the same customer CSS name, but only the text is being hidden – not the images. Could you help me troubleshoot this?

    Thanks!

    #736144
    ycoleman31
    Participant

    Hi Want to add a button to the main menu on our website. Can you explain how. I looked at the code on your demo: http://kriesi.at/themes/enfold-restaurant/ I don’t want it to be transparent, but like the button – green background, in the top nav. I want to move it to the main nav and have already added Book Now!

    Thanks,
    Yvonne

    #736141

    I see a string from 2014 on this topic but not sure the directions are the same ;) I would like to add colored boxes to my enfold theme but don’t know where to put the code or what the code is.. Any help here.. Thanks

    FIGURED IT OUT.. Ignore ;)

    #736127
    Mariusz
    Participant

    Hi, is it possible to force Partner logo slider to stop changing when hovered?

    Thanks
    M

    #736105
    vegasft
    Participant

    I have read many threads without a solution. I need to have the sidebar above the content on mobile devices. I have all sidebars set to left but still shows below the content. I have the checkbox marked to show sidebars on mobile.

    Thank you!

    • This topic was modified 9 years, 1 month ago by vegasft.
    #736103

    Thanks, Yigit! This was very close to what I needed. For anyone else who finds this thread, I added the following to the Quick CSS:

    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header{
    max-width: 1440px !important;
    }
    @media only screen and (max-width: 1440px) {
    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
    width: 100%!important;
    max-width: 100%!important;
    }
    }

    #736077
    wdwalrus
    Participant

    Is there a way to target the background-position css for mobile?

    For desktop Background-position: center center is fine, but for mobile I’d like background-position: 0;

    Please see attached img link below.

    Not working… I was able to figure out to do what I wanted. The text is now aligned with the logo and the icons are displayed properly on all browsers. I added the following CSS code for those who wants to do the same :

    <style>
    #top-header-contactinfor {
    font-size: 14px;
        line-height: 18px;
        position: relative;
        top: 15px;
    }
    #top-header-contactinfor .top-info:before {
    display:none!important;
    }
    #top-header-contactinfor .btm-info:before {
    display:none!important;
    }
    
    @media all and (min-width: 320px) and (max-width: 550px) {
    	.main_menu .avia-menu, #header_main_alternate, .fallback_menu {
        display: block;
        clear: both;
    }
    #header_main_alternate .main_menu { display:none; }
    #top #header_main_alternate {
        background-color: #2c353d;
        margin-top: 27%;
    width: 105%;
    }
    }
    @media all and (min-width: 551px) and (max-width: 650px) {
    	.main_menu .avia-menu, #header_main_alternate, .fallback_menu {
        display: block;
        clear: both;
    }
    #header_main_alternate .main_menu { display:none; }
    #top #header_main_alternate {
        background-color: #2c353d;
        margin-top: 15%;
    }
    }
    
    </style>
    #736063

    Hey Kevin,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        width: 100%!important;
        max-width: 100%!important;
    }
    

    Best regards,
    Yigit

    DigitalEssence
    Participant

    Hi,

    a while back I received some excellent css advice which enabled me to target the nth-child background colour of .products li in a Woocommerce category loop. This enabled me to have every odd product background showing a background colour. This worked well and the client was very happy.

    Fast forward a year and we are now re-doing their site in a full width layout. The problem I now have is that the li loop is sitting at the far left of the window.

    View post on imgur.com

    We would like the product loop to line up with the two 1/2 columns above so that the products line up neatly.

    I can do this in a large browser windows using:

    .av-product-class- {width:100%!important; padding-left:18%; padding-right: 10%;}

    View post on imgur.com

    This works nicely in large browsers but as soon as I start to reduce the window down, the % values I’ve used don’t work any more and the product loop is off centre. Normally I would try and use a media query to sort this and I can do this when it gets down to ipad and iPhone sizes but is there a way to centre this in the browser so that it matches the content width?

    The site is at: http://ridelines.digitalessence.net/group-mtb-courses/

    And the product loop is a code block within a coloured section. I’ve tried placing it within a full 1/1 column but this didn’t help.

    I’m now turning to you for some of your amazing css magic, hoping that this can be achieved.

    Thanks as always.

Viewing 30 results - 85,381 through 85,410 (of 142,738 total)