Viewing 30 results - 3,541 through 3,570 (of 18,733 total)
  • Author
    Search Results
  • #1234114

    In reply to: Burger Menu

    Hallo, leider wird ist das Burgermenu zwischen 1100px und 990px anders dargestellt.

    Den Code habe ich im Quick CSS stehen:
    @media only screen and (min-width: 990px) and (max-width: 1080px) {
    #top #header_main_alternate {
    display: none;
    }
    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 140px !important;
    }
    .html_header_top .av_bottom_nav_header .av-logo-container .main_menu, .av-burger-menu-main {
    display: block;
    min-width: 80px;
    }
    #top #header .av-main-nav > li > a {
    background-color: #fff;
    }

    }

    @media only screen and (max-width: 1080px) { #top #header .av-main-nav > li > a {
    background-color: transparent;
    }
    }

    td { font-size: 15px; }
    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 { text-transform: none; }

    .av-catalogue-title {
    padding-right: 60px;
    text-transform: none; }

    div .slideshow_caption h2 {
    text-transform: none; }

    .av_minimal_header_shadow {
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    #ui-datepicker-div.fc-datepicker .ui-datepicker-header { height: 36px; background: #719430; color: #ffffff; border-color: #63822a; }

    .pauschalenspalteschatten {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
    border: -5px solid #ffffff;
    background-color: #FFFFFF !important;
    padding: 12px !important;
    margin-bottom: 16px;
    }

    .avia-image-container small.avia-copyright {
    font-size: 10px;
    text-align: right;
    }

    .buttonizer.buttonizer-desktop-has-1 .buttonizer-button.button-desktop-1
    {
    width: 80px;
    height: 80px;
    }

    #scroll-top-link {display: none; }

    View post on imgur.com

    Hey digitalnomadesarl,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (min-width: 901px) and (max-width: 1100px) {
    nav.main_menu .avia-menu-text {
      font-size: 11px;
    }
    }
    @media only screen and (max-width: 900px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    digitalnomadesarl
    Participant

    Hello,

    I’d like to transform the font-size of the items in the main menu depending on the size of the screen.

    By default my top menu font-size is 18px.
    I’d like to change it to 11px if the size of the screen goes under 1100px.
    Then if the size of the screen goes under 900px i’d like to change to a burger menu.

    I’d like this to work on all type of devices (pc, tablets, smartphone…)

    Is that possible?

    Thanks and have a good day everyone.

    #1232998

    Hi Netwoman,

    Sure :)

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .home .avia-content-slider1 .avia-content-slider-inner p {
        font-size: 16px;
        line-height: 25px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    Hey Stepconsulting,

    Thank you for the inquiry.

    We may need to manually control the size of the fonts on larger screens using css media queries. We can do it by applying a unique class or ID attribute to the layer. Start by editing a layer, then go to the Links & Attributes tab and look for the CLASS or ID field. In the CLASS field, add the name “custom-layer” for example, then use it to adjust the style of that particular layer.

    Add this css code in the Quick CSS field or the style.css file.

    @media only screen and (min-width: 2160px) {
       .custom-layer {
          font-size: 40px !important;
       }
    }

    If you want to use the ID field instead, input the same name that we use for the CLASS field, then replace the css code with the following.

    @media only screen and (min-width: 2160px) {
        #custom-layer {
           font-size: 40px !important;
        }
    }

    // https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    Best regards,
    Ismael

    #1232652

    Result Page: https://webers-testseite.de/pureinstall/hexagones/

    I gave to the icon-box itself a custom-class: hexagone-icons

    The trick is to place a div ( div.icon-container) between the before and after container – and to tranfer from the icon-box to that new container a lot of enfold settings. You can now set different colors on the icon-box as before – the will be transfered to the hexagone borders. Even a different icon-set is possible.

    this comes to child-theme functions.php :

    function add_icon_box_container(){
    ?>
    <script type="text/javascript">
    (function($) {
    	$('.iconbox.iconbox_top.hexagone-icons .iconbox_icon').each(function(){
    		var DataIcon 		= $(this).data('av_icon'),
    			DataFont		= $(this).data('av_iconfont'),
    			IconColor		= $(this).css('color'),
    			IconBgColor 	= $(this).css('background-color'),
    			IconBorder 		= $(this).css('border');
    		$(this).append('<div class="icon-container"></div>'); 
    		$(this).css('color', IconBgColor);
    		$(this).find('.icon-container').attr({
    			'data-av_icon': DataIcon,
    			'data-av_iconfont': DataFont,
    		}).css({
    			'background-color': IconBgColor,
    			'color': IconColor,
    		});
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_icon_box_container');

    this to quick css

    .hexagone-icons .iconbox_icon{
      width: 100px;
      height: 57.735px;
      background: currentColor;
      position: absolute;
      left: 45% !important;
      border: 1px solid currentColor
    }
    .hexagone-icons .iconbox_icon::before {
      content: "";
      position: absolute;
      top: -28.8675px;
      left: 0;
      width: 0;
      height: 0;
      border-left: 50px solid transparent;
      border-right: 50px solid transparent;
      border-bottom: 28.8675px solid currentColor;
    }
    .hexagone-icons .iconbox_icon::after {
      content: "";
      position: absolute;
      bottom: -28.8675px;
      left: 0;
      width: 0;
      height: 0;
      border-left: 50px solid transparent;
      border-right: 50px solid transparent;
      border-top: 28.8675px solid currentColor;
    }
    
    .hexagone-icons .iconbox_icon {border-radius: 0px !important; height: 30px !important; width: 68px !important;}
      
    .hexagone-icons .iconbox_content_title {margin-top: 50px !important;}    
    
    .hexagone-icons .icon-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .hexagone-icons .icon-container:before {
        color: currentColor;
        content: attr(data-av_icon);
        font-size: 40px;
    }

    You had to adopt the dimensions of some things! Are there formulars on

    #1232377

    ### wp-core ###

    version: 5.4.2
    site_language: en_US
    user_language: en_US
    timezone: Europe/London
    permalink: /%year%/%monthnum%/%postname%/
    https_status: true
    user_registration: 0
    default_comment_status: closed
    multisite: false
    user_count: 2
    dotorg_communication: true

    ### wp-paths-sizes ###

    wordpress_path: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp
    wordpress_size: loading…
    uploads_path: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content/uploads
    uploads_size: loading…
    themes_path: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content/themes
    themes_size: loading…
    plugins_path: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content/plugins
    plugins_size: loading…
    database_size: loading…
    total_size: loading…

    ### wp-active-theme ###

    name: Enfold (Ilyo) (enfold-child)
    version: 0.1.0
    author: Richard Olpin
    author_website: http://www.richardolpinphotography.co.uk
    parent_theme: Enfold (enfold)
    theme_features: avia_exclude_bbPress, deactivate_tribe_events_calendar, avia_exclude_GFForms, avia_exclude_menu_exchange, avia_exclude_relevanssi, avia_exclude_WooCommerce, avia_exclude_wpSEO, avia_exclude_wpml, avia_exclude_instagram_feed, avia_mega_menu, avia_improved_backend_style, avia_option_pages_toggles, avia_sidebar_manager, automatic-feed-links, nav_menus, menus, widgets, post-formats, avia-disable-default-shortcodes, avia_post_meta_compat, force-post-thumbnails-in-widget, post-thumbnails, title-tag, editor-styles, editor-style, customize-selective-refresh-widgets, responsive-embeds, editor-color-palette, editor-font-sizes, avia_no_session_support
    theme_path: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content/themes/enfold-child

    ### wp-parent-theme ###

    name: Enfold (enfold)
    version: 4.7.6
    author: Kriesi
    author_website: https://kriesi.at
    theme_path: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content/themes/enfold

    ### wp-plugins-active (6) ###

    Akismet Anti-Spam: version: 4.1.6, author: Automattic
    Classic Editor: version: 1.5, author: WordPress Contributors
    Contact Form 7: version: 5.2, author: Takayuki Miyoshi
    EventON: version: 2.6, author: AshanJay
    Hide YouTube Related Videos: version: 1.4.2, author: SparkWeb Interactive, Inc.
    Honeypot for Contact Form 7: version: 1.14.1, author: Nocean

    ### wp-plugins-inactive (7) ###

    All In One SEO Pack Pro: version: 3.6.2, author: All in One SEO Team
    iQ Block Country: version: 1.2.9, author: Pascal
    Optimus: version: 1.6.0, author: KeyCDN
    Simple Revisions Delete by bweb: version: 1.5, author: Brice CAPOBIANCO
    WP-Optimize – Clean, Compress, Cache: version: 3.1.2, author: David Anderson, Ruhani Rabin, Team Updraft
    WP Google Fonts: version: v3.1.4, author: Noah Kagan
    WP Super Cache: version: 1.7.1, author: Automattic

    ### wp-media ###

    image_editor: WP_Image_Editor_GD
    imagick_module_version: Not available
    imagemagick_version: Not available
    gd_version: 2.2.5
    ghostscript_version: not available

    ### wp-server ###

    server_architecture: Linux 4.4.223-icpu-044 x86_64
    httpd_software: Apache
    php_version: 7.4.8 64bit
    php_sapi: cgi-fcgi
    max_input_variables: 1000
    time_limit: 30
    memory_limit: 256M
    max_input_time: -1
    upload_max_size: 2M
    php_post_max_size: 8M
    curl_version: 7.64.0 OpenSSL/1.1.1d
    suhosin: false
    imagick_availability: false

    ### wp-database ###

    extension: mysqli
    server_version: 5.7.30-log
    client_version: mysqlnd 7.4.8

    ### wp-constants ###

    WP_HOME: undefined
    WP_SITEURL: undefined
    WP_CONTENT_DIR: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content
    WP_PLUGIN_DIR: /homepages/43/d97354903/htdocs/www.BlackBeltAcademy.info/wp/wp-content/plugins
    WP_MAX_MEMORY_LIMIT: 256M
    WP_DEBUG: false
    WP_DEBUG_DISPLAY: true
    WP_DEBUG_LOG: false
    SCRIPT_DEBUG: false
    WP_CACHE: false
    CONCATENATE_SCRIPTS: undefined
    COMPRESS_SCRIPTS: undefined
    COMPRESS_CSS: undefined
    WP_LOCAL_DEV: undefined
    DB_CHARSET: utf8
    DB_COLLATE: undefined

    ### wp-filesystem ###

    wordpress: writable
    wp-content: writable
    uploads: writable
    plugins: writable
    themes: writable

    `

    #1232219
    digitalnomadesarl
    Participant

    //

    #1232202
    stevebarker56
    Participant

    Updated recently from very ancient (2014) version of Enfold, the site doesn’t now display the logo as it did before.
    I have tried adjusting all header settings with little success. The header logo is 775px X 96px and the current extra css is as below.

    /…logo { display: none; }

    @media only screen and (min-width: 990px) {
    .logo {
    display: none !important;
    }}
    .responsive .logo img { display: none !important; }

    .menu-item a {
    font-size: 16px!important;}

    div.av-masonry-entry-content.entry-content {text-align: centre;}

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation: none; /* Fx 5+ */
    animation: none; /* IE 10+ */}

    .av-masonry-entry {
    opacity: 1 !important;
    visibility: visible !important;}

    .main_menu ul:first-child > li > a{
    padding: 0 15px !important;}

    .main_menu ul:first-child > li a {
    height: 42px !important;
    line-height: 38px !important;}

    I am not sure what to do next?

    #1232163

    In reply to: Avia Editor Error –

    Hi,

    Thanks for that. I remove this code and the Layout Builder starts working after that, please see test page in private.

    [ av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' av_uid='av-kctk8uhc' admin_preview_bg='']
    <!-- The script tag should live in the head of your page if at all possible -->
    <script type="text/javascript" async src="https://play.vidyard.com/embed/v4.js"></script>
    
    <!-- Put this wherever you would like your player to appear -->
    <img
      style="width: 100%; margin: auto; display: block;"
      class="vidyard-player-embed"
      src="https://play.vidyard.com/4gNLNeQJjcVFAniYwWqCgK.jpg"
      data-uuid="4gNLNeQJjcVFAniYwWqCgK"
      data-v="4"
      data-type="inline"
    />
    [ /av_textblock]

    It’s likely the script which is breaking the builder, please try including it as a function in functions.php instead:

    function cbradley_vidyard_code(){
    ?>
    <script type="text/javascript" async src="https://play.vidyard.com/embed/v4.js"></script>
    <?php
    }
    add_action('wp_head', 'cbradley_vidyard_code');

    Best regards,
    Rikard

    #1231889

    Hi,

    Adjust Rikard’s CSS to the following:

    .av_icon_caption, span.av-icon-char[data-avia-icon-tooltip] {
      font-size: 22px;
    }

    Best regards,
    Jordan Shannon

    #1231883

    Hi Yigit,

    No, this is not related to errors in my style.css file.
    I only move it from its original place using this code:

    #header .widget {
    	position: absolute!important;
    	left: 89%!important;
    	top: 14%!important;
    }

    but this is absolutely not a solution. The icon is never at the same place. It depends on screen size.

    What I need is adding an icon which really belongs to my menu, next to my cart.

    In this thread https://kriesi.at/support/topic/my-account-icon/ I found this code which seems to add an icon before main menu:

    // add account icon
    add_action('ava_after_main_menu', function() {
    	echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>';	
    });

    or this code which seems to add an icon after secondary menu:

    // add account icon
    add_action('avia_meta_header', function() {
    	echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>';	
    });

    but which function could add an icon before cart icon in the logo area?

    I also found this code in this thread https://kriesi.at/support/topic/extra-icon-next-to-shopping-cart-icon/:

    add_action( 'init', 'avia_woocommerce_cart_placement', 10);
    function avia_woocommerce_cart_placement()
    {
    	$position 	= avia_get_option('header_position',  'header_top') == "header_top" ? "ava_main_header" : "ava_inside_main_menu";
    	if(avia_get_option('cart_icon') == "always_display_menu")
    	{
    		$position = "ava_inside_main_menu";
    		if( strpos( avia_get_option('header_layout'), 'bottom_nav_header') !== false && avia_get_option('header_position') == 'header_top')
    		{
    			$position = "ava_before_bottom_main_menu";
    		}
    	}
    
    	add_action( $position, 'avia_woocommerce_cart_dropdown', 10);
    	add_action( $position, 'avia_woocommerce_quote_dropdown', 10);
    }
    
    function avia_woocommerce_quote_dropdown()
    {
    	global $woocommerce, $avia_config;
    	$output = "Something here";
    	echo $output;
    }

    It seems to add element in the logo area, but it also deals with quote dropdown and so on, and I don’t need all this stuff…

    Which function is the good one to simply add an icon to the shopping cart area?

    Thanks ;-)

    #1231646

    Hey Byrne,

    That character is likely not supported by the font you are using, that is probably why it looks like that. We can’t target that single character with CSS, but if you try to wrap it in a span element like so:

    Wh<span class="special-a">ā</span>nau

    Then you can target it using CSS like this:

    .special-a {
      font-size: 12px;
    }

    Best regards,
    Rikard

    #1231619

    Hi Dave,

    Please try this CSS as well:

    .av_icon_caption strong, span.av-icon-char[data-avia-icon-tooltip] {
      font-size: 22px;
    }

    Best regards,
    Rikard

    #1231570

    Hi,
    Sorry for the late reply, and thanks for the link. This css will change the font size of the title of the post slider when it is in a 2/3 column.

    #top #main .flex_column.av_two_third .avia-content-slider h3.slide-entry-title {
    	font-size: 40px !important;
    }

    Then at the bottom of the page you have a full width column so to make those titles a different font size, so we will use this css:

    #top #main .flex_column.av_one_full .avia-content-slider h3.slide-entry-title {
    	font-size: 30px !important;
    }

    So you can have css rules to change the font size of the titles depending on what columns they are in.

    Please try the above code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1231494
    Byrne
    Participant

    Hi There
    I am using a word in the menu and on a page heading that uses a macron. The letter appears larger than the others. Is it possible to change the size of that one letter. Screen shot and page in private details. It’s the first ‘a’ in the word Whānau.
    Cheers Jane

    #1231493
    Byrne
    Participant

    Hi There,
    I have been testing my website on various browsers, it looks good on all browsers in Desktop and in mobile Firefox and Safari. But when viewing the website on my mobile (iphone 7) in Chrome the font sizes and line heights look terrible.

    Is it possible to use custom css for mobile Chrome only, such as H1, H2 and body.

    Cheers Jane

    #1231064
    missouriartscouncil
    Participant

    I’ve been experimenting with all the different options of the Accordion element, and have also read through the documentation and searched the forum. I still have questions about how to change the background color on the tab/toggle content area.

    All the variations in the settings for Colors in the Accordion element affect only the title bar of the tab/toggle. On this page – https://www.missouriartscouncil.org/missouri-artsafe – I have the Accordion element (it’s within the Create and Present section) set up with Minimal style and Define Custom Colors > Custom Background Color. That has changed the tab/toggle title bar to the Custom Background Color. The content area is also coming up in the Custom Background Color. And I want it to be different.

    In this documentation https://kriesi.at/documentation/enfold/accordion under Tab Content Style > Content Background, I found this CSS:

    /* Tab content background */
    .my-custom-tabs .toggle_content {
    background: #f2f6fa;
    }

    Changing the background color to #ffffff, I entered it into my site’s Quick CSS. But it didn’t do anything.

    Is there something else I should have done? I’m confused by the directions earlier in the documentation under CUSTOMIZATION > NOTE. “Before we start customization, enable custom CSS class name support from Enfold theme options > LayoutBuilder so we can easily target specific elements. For the below examples to work please assign a class name ‘my-custom-tabs’ to your accordion element or simply use the below accordion element shortcode to which we have already applied a custom class.” Where in the back end is this supposed to be done? And how? Please give a step-by-step.

    A P.S. question about a different aspect of Accordion – How is the size of the font on the tab/toggle title bars determined? Is it via some preset relationship with the site’s default text size? My default size is 14px. I like the way the font size on the title bars looks; I would simply like to understand how it happened.

    For future thought –
    It would be great if in a future Enfold update you added standard options for the tab/toggle content area just like you have for the title bars, so it wouldn’t be necessary to delve into CSS. Thanks!

    philippmhuber
    Participant

    Hi there,

    When you have a look on the website, you see a green “button” (it is actually no real button, it’s a column styled like a button) next to the burger menu. I’ve put 1/5 column into the footer page, position fixed. It should be used for a “Call to action” button (when you click on it, a pop up opens). The thing is, that it hides underneath the header. You don’t see it in the first place, because the header is transparent, but you can’t klick on the button. When you scroll down it hides completley underneath the sticky header. I put quite some code into quick css to style the header – i used different code for the different devices.

    Can you pleas give me the right classes / ids to set the right z-index? I’ve allready searched for ours….

    on mobile view the “button” is set position fixed on the bottom of the viewport – when you scroll all the way down you can see that it hides underneath the socket.

    thank you in advance!

    Here is the code, please see link in private content.

    /*HEADER MOBILE*/
    @media only screen and (max-width: 767px){
    .buchen-button{
    right: 0px!important;
    float: none!important;
    height: 30px;
    position: fixed!important;
    bottom: -20px!important;
    z-index: 999!important;
    }

    .buchen{
    top: 5px!important;}

    #avia2-menu{
    background: #ffffff!important;
    width: 100%important;
    float: left!important;
    position: fixed!important;
    height: 50px!important;
    -webkit-box-shadow: 5px 5px 15px -9px #000000;
    box-shadow: 5px 5px 15px -9px #000000;}

    .responsive #header_meta .sub_menu>ul{
    text-align: left;
    left: -1px!important;
    }

    .header_color .phone-info {
    float: right!important;
    text-align: right!important;
    height: 40px;
    position: fixed;
    background: #ffffff;
    left: 50%!important;
    top: -12px!important;
    width: 50%!important;
    z-index: 20!important;
    }

    #menu-item-wpml-ls-4-en{
    top: 18px;
    font-weight: 100!important;
    font-family: ‘lothos-pro’;
    font-size: 20px!important;
    background: #ffffff!important;
    position: fixed;
    z-index: 20!important;
    }

    .av-hamburger{
    background: #3074b5;
    padding-right: 20px;
    padding-left: 10px;
    margin-right: -30px;
    margin-top: 15px!important;}

    #header_main{
    top: 30px!important;
    height: 125px!important;}
    }

    /*HEADER TABLET*/

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .buchen-button{
    width: 150px!important;
    height: 80px;
    position: fixed!important;
    top: 50px!important;
    left: 70px;
    z-index: 999!important;
    }
    .buchen{
    top: 25px!important;
    bottom: 25px;
    }

    #header {
    position: fixed !important;
    height: 87px!important;
    z-index: 10!important;}

    #header_meta{
    background: transparent!important;
    z-index: 1!important;}

    .logo img{
    max-height: 60px;
    height: 60px;
    left: 5px;
    top: 8px;}

    .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container{
    width: 60%;
    float: left;
    top: -80px;
    }

    .html_header_top #top .av_header_stretch .container{
    width: 40%;
    float: right;
    }

    .av-hamburger{
    background: #3074b5;
    padding-left: 20px;
    padding-right: 15px;
    margin-left: -20px;}

    #menu-item-wpml-ls-4-en{
    top: 20px;
    font-weight: 100!important;
    font-family: ‘lothos-pro’;
    font-size: 20px!important;
    }

    .av-hamburger-inner, .av-hamburger-inner:before, .av-hamburger-inner:after{
    background-color: #ffffff!important;}

    }
    /*HEADER TABLET HORIZONTAL*/
    @media screen and (max-width: 1100px) and (min-width: 989px){
    .html_header_top #top .av_logo_right .logo {
    right: 46%;
    max-height: 50px;
    height: 50px;
    }
    .buchen-button{
    width: 150px!important;
    height: 80px;
    position: fixed!important;
    margin-top: -32px!important;
    left: 112px!important;
    z-index: 999!important;
    }
    .buchen{
    top: 25px!important;}
    }

    /*HEADER DESKTOP*/
    @media only screen and (min-width: 989px) {
    /*buchen button*/
    .buchen-button{
    width: 150px!important;
    height: 80px;
    position: fixed!important;
    top: 32px!important;
    left: 130px;
    z-index: 999!important;
    }
    .buchen{
    top: 25px!important;}

    /*Flyout von links*/
    .html_av-overlay-side .av-burger-overlay-scroll {
    right: auto;
    left: 0;
    }

    .html_av-overlay-side .av-burger-overlay-scroll {
    width: 350px;
    -webkit-transform: translateX(-350px);
    transform: translateX(-350px);
    }

    #header_main {
    top: -80px;
    }

    #menu-item-wpml-ls-4-en{
    top: 20px;
    font-weight: 100!important;
    font-family: ‘lothos-pro’;
    font-size: 20px!important;
    }

    .phone-info with_nav{
    top: 10px!important;
    }

    .av_minimal_header .header_bg {
    background: #f8f8f8;
    height: 80px!important;
    }

    div#header_meta{
    float: right;
    width: 25%;
    border: none!important;
    height: 80px!important;
    top: -2px!important;
    }

    /*change color phone info scroll*/
    .header-scrolled{
    transition: none!important;}

    .header-scrolled .phone-info span {
    color: #000000!important;
    }

    /*hide logo*/
    .av_header_transparency .logo {
    opacity: 0;
    transition: none;
    }

    /*menu left logo center*/

    .html_header_top #top .av_logo_right .logo {
    right: 45%;
    max-height: 70px;
    height: 70px;
    top: 3px;
    }

    /*Burger background*/
    .av-hamburger {
    background: #3074b5;
    padding-left: 20px;
    padding-right: 5px;
    top: -7px!important;
    vertical-align: top!important;
    margin-left: -40px!important;
    height: 81px!important;
    line-height: 80px!important;
    }

    /*Burger Menu Beschriftung*/
    span.av-hamburger:after {
    content: ‘MENÜ’;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 20px;
    color: #ffffff;
    float: right;
    }
    }

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 1024px) {
    .slideshow_align_caption h1{
    font-size:20px!important;
    }}

    Best regards,
    Jordan Shannon

    #1230381

    Hi MyMedicalShopper,

    Yes, of course, do you want different font sizes or a different color?

    Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    Hi Kaleidoscope_Advertising_and_Design_Inc,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    body#top #text-7 .textwidget a {
        font-size: 18px;
        font-weight: bold;
        color: #ccc;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    Hi,
    To target “RECEIVE INSTANT EMAIL NOTIFICATIONS” only, try this css:

    #blog_subscription-4 > h3.widgettitle {
    	    font-size: 16px;
    }

    To target all of the widget titles in the sidebar, try this css:

    .sidebar1 .cufon_headings {
    	    font-size: 16px;
    }

    You can use any font adjustment in the rule, I used “font-size” as an example.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1230213

    A background-image is a backgroundimage is a background image.

    All kidding aside. You could of course set the color section to follow the aspect ratio of the background image, but you run the risk of making the content too large for the container, which would then be cropped / overlapped.

    Example: if you have an Iphone 6, the maximum width is about 375px – with a 16:9 picture you will have about 210px height.
    With a font size of 16px and 1.5 times the line height per line, this would be 40px – making about 5 lines at 210px.
    Everything above that would be too large.

    Now you could of course set the property of the background image to “contain”, but then, like Ismael, you would have white areas without image.

    See responsive color-section on .: https://webers-testseite.de/terve/
    on wide screens this maybe ok – but on smaller screens ?

    #1230038

    Hi,

    That font doesn’t have a bold state but you can enlarge it slightly by adding this to quick css:

    #menu-item-226 a{
    font-size:17px!important;
    }

    Best regards,
    Jordan Shannon

    #1229891

    In reply to: Arrows on tab section

    Thanks a lot Nikko! Works great!

    I just tweak a little the design of the arrows, in case it helps anyone else:

    
    .av-tab-section-outer-container:after, .av-tab-section-outer-container:before {
        font-family: 'entypo-fontello';
        font-size: 50px;
        position: absolute;
        top: 30px;
        z-index: 1000;
        padding: 30px 15px 30px 15px;
        background: #96ccbe;
        -webkit-transition: all 0.4s ease-out;
        -moz-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
        color: white!important;
        pointer-events:none;
    }
    .av-tab-section-outer-container:after {
        content: '\e879';
        right: 0px;
      }
    .av-tab-section-outer-container:before {
        content: '\e878';
        left: 0px;
    }
    .av-tab-section-outer-container.av-start:before, .av-tab-section-outer-container.av-end:after {
        opacity: 0;
        visibility: hidden;
    }
    

    Have a nice day!

    #1229888

    In reply to: Arrows on tab section

    Hi Oscar,

    Please add this code at the bottom of your child theme’s functions.php:
    (If you don’t have a child theme) you can download and find the instructions in our documentation: https://kriesi.at/documentation/enfold/child-theme/

    function tab_section_arrows(){
        ?>
        <script>
            (function( $ ) {
                var $ts = $('.av-tab-section-outer-container');
                var $tab = $ts.find('.av-section-tab-title');
                
                getActiveTab();
    
                $tab.on('mouseup', function() {
                    setTimeout(getActiveTab, 100);
                });
                
                function getActiveTab() {
                    if( $tab.first().hasClass('av-active-tab-title') ) {
                        $ts.addClass('av-start');
                        $ts.removeClass('av-end');
                    } else if ( $tab.last().hasClass('av-active-tab-title') ) {
                        $ts.addClass('av-end');
                        $ts.removeClass('av-start');
                    } else {
                        $ts.removeClass('av-start');
                        $ts.removeClass('av-end');
                    }
                }
                
            }(jQuery));
        </script>
        <?php
    }
    add_action('wp_footer', 'tab_section_arrows');

    and on your Quick CSS, please use this instead (slight modification from the original):

    @media only screen and (max-width:767px) {
      .av-tab-section-outer-container:after,
      .av-tab-section-outer-container:before {
        font-family: 'entypo-fontello';
        font-size: 50px;
        position: absolute;
        top: 100px;
        z-index: 1000;
        -webkit-transition: all 0.4s ease-out;
        -moz-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
      }
    
      .av-tab-section-outer-container:after {
        content: '\e879';
        right: 20px;
      }
    
      .av-tab-section-outer-container:before {
        content: '\e878';
        left: 20px;
      }
    
      .av-tab-section-outer-container.av-start:before,
      .av-tab-section-outer-container.av-end:after {
        opacity: 0;
        visibility: hidden;
      }
    }

    Best regards,
    Nikko

    #1229701

    In reply to: H1 in layerslider

    Hi Rikard,

    I don’t want to create a new layer or slider because of a SEO need. In fact, even if the h1 mobile slider (or h1 mobile layer) is hidden, when Google crawls my site, it discover two h1. In the source code it shows the 2 sliders… (or layers). You know what I mean ? :)

    For anybody who wants to have only one h1 crawled, it seems that I’ve find a solution by playing with CSS and margin. In order to move my h1 header only on smartphone, I’ve named my layer h1conf (for exemple) in the “link and attribute”. Then, in quick CSS of Enfold, I’ve added :

    @media only screen and (max-width: 767px) {
    .h1conf {
    margin-left: -95px !important;
    font-size: 42px !important;
    }}

    (I’ve taken the opportunity to enlarge my font-size :))

    Franck

    #1229694

    Hi,
    You can add a line break with \A and the css rule white-space: pre; like this:

    @media only screen and (max-width: 767px) { 
    #top.single-calendar article.calendar.type-calendar:before {
    	content: "When the calendar is viewed on a mobile device please view horizontally\A\A";
      color: #777 !important;
      font-size: 1em;
      white-space: pre;
    }
    }

    Note I added two \A because one didn’t seem to be enough of a break, as an alternative you could use margin or padding to add space below this.

    Best regards,
    Mike

    Lexa_Dryke
    Participant

    Hi there,
    I can’t save the date and title font size change in the “chronology” module. Only changing the font size of the text works. Default use is always coming back. I have reproduced this error on two of my Enfold sites. Have you ever noticed this problem? How can I fix it? Fyi, I use last wp and enfold update.
    Thank you
    Lex

    • This topic was modified 5 years, 8 months ago by Lexa_Dryke.
Viewing 30 results - 3,541 through 3,570 (of 18,733 total)