Viewing 30 results - 83,071 through 83,100 (of 142,736 total)
  • Author
    Search Results
  • #759089

    Hey!

    One by one the issues, else we can not solve them properly.

    @media only screen and (max-widht:767px) {
    .responsive #top #wrap_all .container {
    text-align: center !important;
    } }

    Let us know if that one works out as should.
    Thanks a lot

    Regards,
    Basilis

    #759088
    wschaefer1
    Participant

    Hi,

    I have logo centered with navigation on top. I added 75px of padding above the logo. The logo disappears when scrolling. I removed the padding and it still disappears. How can I fix this?

    Thanks!

    #759076
    MattDalli
    Participant

    Hi guys,

    I found this topic in the forum which I followed so I could style my contact form 7 with Enfold features: https://kriesi.at/support/topic/styling-contact-form-7-as-enfold-contact-form/

    However, the ‘submit’ button seems to be a bit broken as once I fill in the form, it just shrinks and removes the text and nothing happens.

    Any ideas please? URL & Login Details in Private Data.

    Many Thanks.

    #759057

    Hey Magnus,

    please use different tickets for different questions/issues.

    1.) Use this code inside Quick CSS field:

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

    2.) Use this code:

    #mobile-advanced, #mobile-advanced  a, #mobile-advanced .mega_menu_title {
    color: white !important;
    }

    Best regards,
    Andy

    #759043

    Hi,

    Please try the below code I have tested this on my installation. if you do not see any changes please refresh the page a few times to clear the cache.

    #top .avia-datepicker-div.ui-datepicker td span, 
    #top .avia-datepicker-div.ui-datepicker td a {
        color: #000!important;
    }

    Best regards,
    Vinay

    #759006

    Hi,

    is this a second thread about the same topic you already talked about? if yes then please avoid that, as we are already very busy here in this forum.

    However you could try to find a solution which you hide on desktop and show on mobile only. I would try to work with a Grid Row element instead.

    Best regards,
    Andy

    #759000

    Topic: flags

    in forum Enfold
    lech07
    Participant

    Hi,

    I am trying to add on the new installation the flags in avia2-menu at the right with below css. but this is not working.
    it´s on: http://zorbas.synology.me/zorbas.dk/ but you can take the working example from zorbas.synology.me/wordpress

    #avia2-menu {
    position: relative;
    top: -3px;
    }

    #top .flag-dansk {
    background: url(‘http://zorbas.synology.me/zorbas.dk/wp-content/uploads/2017/03/dansk-flag.png’) center center no-repeat !important;
    height: 18px;
    width: 50px;
    text-indent: -9999em;
    }

    #top .flag-svensk {
    background: url(‘http://zorbas.synology.me/zorbas.dk/wp-content/uploads/2017/03/svensk-flag.png’) center center no-repeat !important;
    height: 18px;
    width: 50px;
    text-indent: -9999em;
    }

    #top .flag-dansk a,
    #top .flag-svensk a {
    display: block;
    }

    #758987

    Hi,

    thanks for your words. If you send us a precise link to the thread in question, then we can re open it for you.

    If you have a feature request for Kriesi, then feel free to mention it here: https://kriesi.at/support/enfold-feature-requests/

    Please don’t mix any other topics in one thread, as it gets quite confusing otherwise. Feel free to open a new ticket for a new question/issue. Thanks for your understanding.
    In your new ticket provide us a precise link where we can inspect the elements in question, a screenshot highlighting exactly what’s going on (imgur.com, dropbox), as well as admin access.

    Best regards,
    Andy

    #758969

    Is there a way of editing the template, So I could add

    <div class="logo">
      <img src="/images/logo_desktop.png" class="desktop" />
      <img src="/images/logo_mobile.png" class="mobile />
    </div>
    

    Then use CSS to show which one?

    • This reply was modified 8 years, 11 months ago by web_kings.
    #758938
    interage
    Participant

    We have a client looking for a boxed layout where the left sidebar goes all the way to the top.

    Is there a way to do that with Enfold, while keeping the standard header to the right?

    Thanks!

    #758912
    akriga
    Participant

    Hi,
    this thread:
    Enfold Image Sizes
    suggests opening up the theme’s functions.php file to edit image sizes. These sizes will get overwritten when Enfold is upgraded. How do I update these sizes in an upgrade safe way please?
    Specifically I want to update entry_with_sidebar size (845×321) and this is not exposed in the back-end either via Enfold, WP or Woo.

    Thank you,
    Adrian

    #758899

    Hi,

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

    #top .avia-datepicker-div a.ui-state-hover {
        color: #000!important;
    }

    Best regards,
    Vinay

    #758884

    Hey Munford,

    1. To align the main menu and language switcher

    #top .av-subnav-menu > li {
        padding: 10px 0!important;
    }
    .menu-item-language {
    	transform:translateY(5px);
    }
    

    2. To remove menu and move the hamburget icon to the right

    /* hide menu text */
    #top .mobile_menu_toggle .av-current-placeholder {
        display:none!important;
    }
    /* Move to right */
    #top .mobile_menu_toggle {
        transform: translateX(40vw);
    }
    /* To tighten the menu space */
    @media only screen and (max-width: 767px) {
    .responsive #top .av-menu-mobile-active .av-subnav-menu > li > a {
        padding: 5px 15%!important;
        }
    .responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before {
        top: 5px;
    }
    }
    

    3. To disable scroll zoom on maps give this plugin a try https://wordpress.org/plugins/wp-google-maps/

    Best regards,
    Vinay

    #758878

    Hi!

    Thank you for using Enfold.

    Set a minimum width to the columns to fix their alignment.

    @media only screen and (min-width: 1180px) {
        #top #header .avia_mega_div > .sub-menu > li {
            min-width: 196px;
        }
    }
    
    @media only screen and (max-width: 1179px) {
        #top #header .avia_mega_div > .sub-menu > li {
            min-width: 170px;
        }
    }

    Regards,
    Ismael

    #758874

    Topic: Code-Block

    in forum Enfold
    Jochen
    Participant

    Hi there,
    in the Code-Block I just want to write e.g. <div id=”topp”></div>

    So I mark
    Deactivate schema.org markup
    Output the code without any additional wrapper elements. (not recommended)

    But what comes out is e.g.
    <div id=’after_submenu’ class=’main_color av_default_container_wrap container_wrap fullsize’ ><div class=’container’ ><div class=’template-page content av-content-full alpha units’><div class=’post-entry post-entry-type-page post-entry-206′><div class=’entry-content-wrapper clearfix’>
    <div id=”topp”></div>
    </div></div></div><!– close content main div –></div></div>

    Is it possible the way I intended to do it?

    Greetings

    #758857

    In reply to: Style Form

    Hey jnightingale!

    Thank you for using Enfold.

    The fields look the same as the default theme fields but you can add this css code to improve it.

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
        -webkit-appearance: none;
        border: 1px solid #e1e1e1;
        padding: 8px 6px;
        outline: none;
        font: 1em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #777;
        margin: 0;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 0px;
        width: 100%;
        padding: 13px;
        border-radius: 2px;
    }
    
    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        border-color: #ebe8e2;
        background-color: #f8f6f2;
        color: #9c9288;
    }

    For the submit button, please use this css code.

    .ninja-forms-field[type="button"] {
        background-color: #c3512f;
        color: #ffffff;
        border-color: #a1300d;
        margin: 0;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 0.92em;
        min-width: 142px;
        outline: none;
    }

    Adjust the values as needed.

    Regards,
    Ismael

    #758851

    Thanks for your help. for now we chose to remove masonry and use tabs instead. You can close this topic.
    Thankyou.

    #758847

    Hi, Yigit,

    I could not find how to open a new support topic. Can you give me the link?

    Here is the issue I have.

    After WP 4.7.3 and Enfold 4.0.2 I can’t save changes in my website.

    I haven’t made any changes in theme or other files, just instaled the newest updates.

    Admin info in the private content so you could take a look.

    Thanks.

    #758844

    This topic can be closed.
    I have implemented “advanced admin columns” to accomplish this.

    #758837
    Besteam
    Participant

    Good morning,
    after the upgrade, it disappeared back to top button in mobile version. And ‘it Wanted? E ‘was added a few sections to make it visible in the mobile? Thank

    #758821
    ROOTSTEPS
    Participant

    Hi there,

    I’m the developer of http://lp.mountainbootcamps.nl/mb/ and we have an icon list on the homepage which used to animate into bigger icons with the right colors. This stopped working after updating to the newest WordPress version. This is an assumption because I am not sure the update caused it. The only thing I know is that it used to work.

    I would like to ask support on this subject. I understand that you will be needing username / password and probably FTP access, tell me if this is the case.

    Thanks a lot in advance.

    Kind regards,
    David Weermeijer

    #758817

    Hey!


    @limedrop
    : Set the Header > Menu and Logo Position settings to “Logo center, Menu below’. Add a right margin to the menu item beside the logo and move the menu container upwards with the following css code.

    #menu-item-77 {
        margin-right: 100px;
    }
    
    #header_main_alternate {
        z-index: 2;
        top: -60px;
        border: none;
    }

    Adjust the “#menu-item-77” selector to the id of the menu item located at the left side of the logo.

    Best regards,
    Ismael

    #758813

    Hey GoToGalMarketing,

    The divider color is black already and it looks like you figured it out?

    In case you still need help please go to Enfold > General Styling > Logo Area and make changes to the border color value.

    To add a bottom border to the header try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .html_header_top.html_header_sticky #header {
        border-bottom: 1px solid #000;
    }

    Best regards,
    Vinay

    #758806

    Hi,

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

    #header .widget {
    	position:absolute!important;
    	left:100px!important;
    	top:-50px!important;
    }
    
    #header.header-scrolled .widget {
    	position:absolute!important;
    	left:55px!important;
    	top:-45px!important;	
    }
    
    #header.header-scrolled .widget img {
    width:100px;
    height:auto;
    }
    
    

    Best regards,
    Vinay

    #758800
    Munford
    Participant

    Hi guys
    A few of questions:
    1. I have a language switcher in my fullwidth submenu which threw off the alignment of my menu items. I tried this to align them but it’s not working.
    .mobile_menu_toggle {
    vertical-align: middle;
    }

    2. In mobile view, I’d like to get rid of the “menu” text beside the hamburger icon, and move the icon to right align. Also is there a way to tighten up the mobile menu or not have it cover the whole screen? tried this:
    #top .mobile_menu_toggle .av-current-placeholder {
    display: none!important;
    }

    3. I am trying to disable the scolling zoom on some google maps, by putting this into a code block:
    <div class=”overlay” onClick=”style.pointerEvents=’none'”></div>
    <iframe src=”https://mapsengine.google.com/map/embed?mid=1GHXXb0-fuX96S53OYHZ3BXfXDoM&#8221; width=”100%” height=”480″></iframe>
    and then adding this to css:
    .overlay {
    background:transparent;
    position:relative;
    width:640px;
    height:480px;
    top:480px;
    margin-top:-480px;
    }

    which worked fine the other day, allowing no zoom scrolling until the map was clicked on.
    now the onClick=”style.pointerEvents=’none’ code disappears when I save the page, and all clicking on the map is disabled. What am I doing wrond. ??

    thanks for your help
    Nancy

    • This topic was modified 8 years, 11 months ago by Munford.
    #758795

    Hi,
    looking for the same. I am using Photography Portfolio Demo.
    Thanks
    Christoph

    #758775

    Hi,

    You can add this to quick css to change the background of the sub-menu:

    .html_header_transparency #top .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a {
    background: white!important;
    }

    To adjust menu speed:

    You can edit js > avia.js, and search for this line:

    item.stop().css(‘display’,’block’).animate({opacity:1},300);

    Adjust the value 300.

    Best regards,
    Jordan Shannon

    #758773

    Hi!

    1.) That modification is only for the main events template, not the single events page. Retain the modification for the single events page.

    // https://kriesi.at/support/topic/events-calendar-pro-adding-a-sidebar/#post-756781

    2.) Please use this css code.

    div#tribe-events-bar {
        display: none;
    }

    Regards,
    Ismael

    #758767

    Hi,

    You can try adding this to quick css:

    #top .av-iconlist-small li {
    padding-bottom: 10px!important;
    }

    Best regards,
    Jordan Shannon

    #758762

    Hi,

    Please add this to quick css:

    @media only screen and (max-width: 767px){
    .responsive #top #wrap_all .av-flex-cells .no_margin {

    padding-top: 0px!important;
    }
    }

    Let me know if this works for you.

    Best regards,
    Jordan Shannon

Viewing 30 results - 83,071 through 83,100 (of 142,736 total)