Viewing 30 results - 85,591 through 85,620 (of 142,739 total)
  • Author
    Search Results
  • #734083

    In reply to: Logo Center Menu Right

    thanks, tried it out and it adds it to the top right side of the page. Any thoughts ?

    #734075

    Hi,

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

    @media only screen and (max-width: 989px) and (min-width: 768px) { 
    .responsive.html_mobile_menu_tablet.html_visible_cart #top .cart_dropdown {
        right: 70px;
    }}
    

    I could not reproduce the other issues on my end. Can you please post screenshots and show? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
    Also, please try de-activating all active plugins and check if that helps.

    Best regards,
    Yigit

    Hi,

    We have replied you here – https://kriesi.at/support/topic/video-does-not-line-up-in-advance-layer-slider/
    Let us stick to that thread.

    Best regards,
    Yigit

    #734045

    In reply to: Logo Center Menu Right

    Hi,

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

    #header_main_alternate {
        z-index: 2;
        top: 0;
        right: 0;
        position: absolute;
    }
    

    Best regards,
    Vinay

    #734041

    Hey Merilla,

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

    .phone-info {
        position: relative;
        top: 30px;
    }
    

    Best regards,
    Yigit

    #734028
    frank f batavier
    Guest

    support/topic google fonts-used-in-enfold

    #734026

    Hi Ismael,

    Thanks for the additional code but I couldn’t see any difference? Is it just my end? Can you check it too? I have shown below all the custom CSS field just in case anything else in there is conflicting.

    .widgettitle { font-size: 20px!important; }

    div .copyright {
    width: auto!important;
    }

    .avia-button {
    font-size: 25px!important;
    }

    .av-section-bottom-logo.header_color .container {
    background-color: rgba(255,255,255,0.5) !important; }
    .av-section-bottom-logo.header_color + div + .avia-section {
    margin-top: -135px;

    .av-section-bottom-logo.header_color .container, .av-section-bottom-logo.header_color .container .inner-container {
    width: 100% !important;
    max-width: 100%;
    }

    @media only screen and (max-width: 767px) {
    .responsive .logo a {
    display: inline-block;
    vertical-align: middle;
    }

    .responsive .logo {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    }

    .logo img { max-height: 48px; }
    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 80%;
    height: auto !important;
    margin-bottom: 15px;
    }}

    #734024
    federico177
    Participant

    hello,
    My site is http://www.guadagnareconblog.com
    when i insert an images in the article and, in the options of images, i select the custom link( for example the custom link is : http://www.sitoprova.com), when i open the images in the article, the page opens in http://www.guadagnareconblog.com/www.sitoprova.com instead of http://www.sitoprova.com.
    How i can resolve this problem?
    P.S.: in the custom link i have wrote http://www.sitoprova.com

    #734023
    ssumner
    Participant

    Hi,

    We have suddenly been getting an error message from the LayerSlider plugin

    This message appears in the admin page for the layerslider, we only see the first line on all other pages with the layerslider on, it goes away if we remove the layerslider from the page:

    Warning: Invalid argument supplied for foreach() in D:\home\site\wwwroot\wp-includes\translations.php on line 1252 Warning: Invalid argument supplied for foreach() in D:\home\site\wwwroot\wp-includes\translations.php on line 1445 Notice: Undefined property: SQL_Translations::$previous_query in D:\home\site\wwwroot\wp-includes\wp-db.php on line 690 Warning: Invalid argument supplied for foreach() in D:\home\site\wwwroot\wp-includes\translations.php on line 1445

    We have updated to the latest version of enfold v3.8.4 and the issue is still here. We are also using Project Nami to host in Azure, this has been updated also to the latest version (WordPress v4.7.1)

    Also seeing messages like this in the Translate.log file:

    2017-01-16 09:55:25 Error Code: 102 -- Begin Query translation attempt:
    SELECT * FROM wp_layerslider
    										WHERE id = 8 AND flag_hidden = '0'
    										AND flag_deleted = '0'
    										ORDER BY date_c DESC LIMIT 1
    2017-01-16 09:55:26 -- Translation result:
    SELECT TOP 1 * FROM wp_layerslider
    										WHERE id = 8 AND flag_hidden = '0'
    										AND flag_deleted = '0'
    										ORDER BY date_c DESC 
    #734022
    efini
    Participant

    hi there,

    i try to create a custom post format and add the ability to use the avia_builder. unfortunately i only see the spinning wait icon. i can click on content stuff like a text field or heading but after saving the document i can’t see the changes i’ve made.

    i was also wondering about the “regular wp editor” i still see at the top

    i’m using a child theme with the following functions.php

    add_action( 'init', 'create_post_type' );
    function create_post_type() {
      register_post_type( 'Produkte',
        array(
          'labels' => array(
            				'name' => __( 'Produkte' ),
            				'singular_name' => __( 'Produkt' )
          					),
          'public' => true,
          'has_archive' => false,
        )
      );
    }
    
    add_filter('avf_builder_boxes', 'add_builder_to_posttype');
    
    function add_builder_to_posttype($metabox)
    {
    	foreach($metabox as &$meta)
    	{
    		if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
    		{
    			$meta['page'][] = 'Produkte'; /*instead add the name of the custom post type here*/
    		}
    	}
    
    	return $metabox;
    }
    
    • This topic was modified 9 years, 1 month ago by efini.
    #734012
    Merilla
    Participant

    Hi!
    I would like to align the phone info with the logo, below the main menu. I have tried the code below, but then the menu didn´t work properly.

    Thanks for your help.

    div#header_meta {
    top: 105px;
    }

    Hi,

    1. Please try adding this at the very end of your themes / child themes functions.php file:
    https://kriesi.at/support/topic/rtl-sortedreverse-functions-problem/#post-384172

    2. Add this to Quick CSS:

    .av-masonry {
        padding: 0 50px;
    }

    Best regards,
    Vinay

    #733978

    Hello Rikard, i commented off that function/hook in enfold functions.php, also added it to enfold-child functions.php, added a codeblock to a page and this css to the quick field:
    .codeblock {
    display: none !important;
    border:10px solid #ff0000 !important;
    background-color: #ff0000 !important; }

    with no effect. The coeblock still is visible: http://web1528.fge1.5hosting.com/untersiller.com/ (The white block on top).
    By the way, why isn’t that function enabled by default?
    br Markus

    #733977

    Thank you so much Rikard! Now you can close the topic!

    Best regards,
    Maria

    #733971

    Thanks a lot Rikard, this worked perfectly!
    Topic can be closed.

    Regards
    Martin

    Hi,

    Thank you for making the changes. We have added the below css in Quick CSS please review the site :)

    /* Header Widget*/
    #top-info .main_menu{
    margin-right:0px;
    }
    .widget-info .top-info {
    display:block;
    clear:both;
    }
    #header_main .widget {
    clear:none!important;
    top-info:0%;
    transform:translateY(-100%);
    right:0;
    font-size:11px;
    position:absolute;
    line-height:14px!important;
    }
    .main_menu {
        clear: none;
        position: absolute;
        z-index: 100;
        line-height: 30px;
        height: 100%;
        margin: 0;
        left: 20%;
    } 
    
    @media only screen and (max-width:989px) {
    #header_main .widget {
    right:90px;
    }}
    
    .widget-info .top-info:before, .widget-info .btm-info:before {
      display: inline-block;
    font-family: "dashicons"!important;
      text-decoration: none;
      speak: none;
    position:absolute;
    left: -20px;
    }
    .widget-info .top-info:before {
      content: "\f525";
    }
    .widget-info .btm-info:before {
      content: "\f102";
    }

    Best regards,
    Vinay

    #733947

    In reply to: Center column

    i just want to eliminate the padding in mobile view if i set the padding in column. I don’t get what media queries is.

    space

    I tried related post but didn’t work for me.

    https://kriesi.at/support/topic/too-much-spacing-when-viewing-on-mobile/
    https://kriesi.at/support/topic/how-to-decrease-the-white-space-for-mobile-layout/

    thx

    • This reply was modified 9 years, 1 month ago by wtony.
    #733937

    Hi,

    Glad we could help :-)

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

    Best regards,
    Rikard

    #733917

    Hey Emma!

    Is this the original topic? https://kriesi.at/support/topic/header-background-different-colours/

    Best regards,
    Ismael

    #733916

    Hi,

    Glad we could help :-)

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

    Best regards,
    Rikard

    #733915

    Hi,

    Please add this one:

    body .container_wrap .hr.avia-builder-el-no-sibling {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    Best regards,
    Ismael

    #733911

    Hey kateclow,

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

    .html_header_top.html_header_topbar_active.html_header_sticky #top #main {
        padding-top: 183px !important;
    }

    Best regards,
    Rikard

    #733910

    Hi Martin,

    Glad you got it working and thanks for the feedback, please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #733907

    In reply to: Hide top menu bar

    Hi Jens,

    Great, glad you found the option to set that :-)

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

    Best regards,
    Rikard

    #733903

    Hi,

    Great, glad we could help :-)

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

    Best regards,
    Rikard

    #733897

    Hi,

    Setting a specific height for the slider will create black spaces on both sides of the main container. Is that ok? Please add this in the Quick CSS field.

    #player_734_1843070160_832626560 {
        max-height: 400px !important;
        top: 0 !important;
    }

    Best regards,
    Ismael

    #733885

    Hi,

    You can try adding some padding to it:

    .av-image-caption-overlay-center {
        padding-top:50px !important;
    }

    Best regards,
    Rikard

    #733879

    Hi,

    Glad we could help :-)

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

    Best regards,
    Rikard

    #733870
    DaFool71
    Participant

    I am trying to get my sidebar to extend the entire length of the page and I haven’t had any luck with it.
    Here is the CSS i’m using

    #top #main .sidebar {
    	background-color: #f9f9f9 !important;
    	padding: 20px !important;
    
    }
    
    .inner_sidebar {
    	margin-left: 0px !important;
    }

    Here is the link to my site so you can see what I mean.

    http://dmxsradio.com/

    Thanks in advance

    #733867

    In reply to: PHP update

    Hi,

    Please continue here: https://kriesi.at/support/topic/problems-after-update-2/#post-733866

    Best regards,
    Ismael

Viewing 30 results - 85,591 through 85,620 (of 142,739 total)