Viewing 30 results - 5,371 through 5,400 (of 11,212 total)
  • Author
    Search Results
  • #867936

    PS: I have other sites running with Enfold, and there the Social Share Buttons Element works without open graph plugs.

    #867931

    Hi Ismael,

    thanks, but I’m a little bit confused. To understand it: For the correct and bugless use of the built in Enfold Social Share Buttons Element, I need an additionial third party plugin?

    Best regards
    Stephan

    #867798
    felipepavao
    Participant

    Hi guys,
    I need a light from you so I am going to share what I’ve accomplished to get some good insights from you.

    Site: http://tmp.structus.xdevs.co/

    Since my client likes this component but wants a load more button, I am displaying this button and all items of the portfolio, but with a small piece of JavaScript, I made the grid to display 8 items.

    However, when I try to redimension the browser, the Isotope updates its height and don’t follow my JavaScript anymore.

    So, it seems Enfold has a script that binds window document to reorganize isotope everytime it occurs. How can I prevent the isotope redimension?

    #867780

    Hey Phet,

    You can refer to this post – https://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    Or you can modify enfold/includes/helper-main-menu.php file on your child theme – kriesi.at/documentation/enfold/using-a-child-theme/ and insert your button manually :)

    Best regards,
    Yigit

    #867693

    In reply to: Contact Form

    This reply has been marked as private.
    #867560

    Hi Andrea,

    Please remove previous code and put this one.
    Here is the complete code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
      .av_promobox .avia-button {
        right: initial !important;
        top: initial !important;
        position: initial !important;
      }
      .avia-promocontent {
          margin-right: 0 !important;
      }
    /****** Planet Self ******/
      .av_promobox.avia-button-yes.avia-builder-el-22 {
        text-align: center;
      }
      .av_promobox.avia-button-yes.avia-builder-el-22 .avia-button-right {
         display: inline-block;
          float: none; 
      }
    
      .av_promobox.avia-button-yes.avia-builder-el-22 .avia-button.avia-size-large {
        margin-top: 0;
      }
    
    
    /****** selbstcoaching page ********/
      .av_promobox.avia-button-yes.avia-builder-el-29 {
        text-align: center;
      }
      .av_promobox.avia-button-yes.avia-builder-el-29 .avia-button-right {
         display: inline-block;
          float: none; 
      }
    
      .av_promobox.avia-button-yes.avia-builder-el-29 .avia-button.avia-size-large {
        margin-top: 0;
      }
    }
    
    

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

    #867537
    Ampower
    Participant

    Hi,

    couldnt find a solution in the forum so here we go. (Page: http://www.am-power.de)

    First problem: My menu is overlapping with my logo, when I use it on Tablet computers. I assume, it doesnt recognize, that there are the englisch and german labels from wpml added in the menue on the right site.

    Second problem is somewhat similar: On Smartphone screens, the language switch appears double. I guess its because enfold is taking off its own flags on desktop screen but not on small screens. So the enfold flags and the wpml text buttons for language switch appear.
    I added this css I found in another post to turn off the language flags from enfold so I can use the wpml flags. It appears that this only works for large screens:

    #top #avia-menu .av-language-switch-item{ display: none; }

    Any solution to those?

    #867170

    what do you think about that:

    Using the Enfold Button Element with light-transparent but with other styling – just css
    give the new class to the button (here it is glass green)
    put in the field of custom css : glass green
    for blue one : glass blue do not put in the classes with the dot (point) ! those are added by default
    etc if you like

    https://webers-testseite.de/buttons/

    /* to get rid of enfold styling - use light-transparent  */
    #top .avia-button.avia-color-light {
        color: inherit !important;
        border: none !important;
        -moz-border-radius: 0;
        -webkit-border-radius: 0; 
        border-radius: 0; 
        box-shadow: none !important
    }
    
    #top .avia-button.avia-color-light:hover {
    opacity: 0.9 !important; 
    text-shadow: 1px 1px 2px  #333
    }
    
    /* font-size of the button and the icon */
    #top .avia-button.avia-color-light {
     font-size: 1.2rem 
    }
    .avia-button.avia-color-light .avia_button_icon {
        font-size: 1.5rem;
        vertical-align: bottom
    }
    
    /* new button style - a bit glassy  */
    .glass {
    	position: relative;
    	display: inline-block;
    	border-radius: 4px;
    	box-shadow: 1px 1px 4px  #666;
    	/* goes to style the text  */
    	text-decoration: none;
    	text-shadow: 1px 1px 2px  #333;
    }
    .glass:before{
    	content: '';
    	position: absolute;
    	top: 2px;
    	left: 2px;
    	width: calc(100% - 4px);
    	height: 50%;
    }
    
    .glass:before{
    	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2))
    }
    
    /* the green one  */
    .green {
    	background-color: green; /*for compatibility with older browsers*/
    	background-image: linear-gradient(green,lightgreen);
    	color: #fff
    }
    .green:hover { background: linear-gradient(#073,#0fa) }
    
    /* the blue one  */
    .blue {
    	background-color: blue; /*for compatibility with older browsers*/
    	background-image: linear-gradient(blue,lightblue);
    	color: #fff
    }
    .blue:hover { background: linear-gradient(#047,#0ef) }
    
    /* the red one  */
    .red {
    	background-color: red; /*for compatibility with older browsers*/
    	background-image: linear-gradient(#ea0404 ,#6d0019);
    	color: #fff
    }
    .red:hover { background: linear-gradient(#a00,#e00) }
    

    and now the rest is your turn – make some other classes with other gradients!

    Here you can make your gradients: Link

    #867058
    Pepe2014
    Participant

    Hello, first I would like to apologize for my bad english. I use the Enfold Theme for the first time. Have so far taken the AVADA theme.
    Find the Enfold Theme but really great and class to use. Only one thing I can not find: I would like to fix the first row under the header menu. It should not scroll out of the picture when scrolling.

    Basically like a second menu under the main menu. There I would like to insert buttons and text. Just like on this website: http://www.autohaus-stricker.de/

    Many thanks for your help.

    Sincerely
    Peter Hövelmeyer

    • This topic was modified 8 years, 5 months ago by Pepe2014.
    #867046
    This reply has been marked as private.

    Hi 2eminds,

    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

    
    .avia_codeblock  .cta-button a {
        padding: 15px 30px 13px;
        font-size: 20px;
        min-width: 220px;
        border-radius: 3px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #867036

    But did a linked url has to be readable as url ? For SEO options this is not necessary to have it.
    That is the reason for buttons , Text links etc.
    Why it is important for you to show the whole url? you can set a “read more…” etc.
    even this will do it – and it looks very clear without the linked url : f.e:
    Owner/Builder Risk (3 articles)

    you can make it as Icon List Small
    and have for pdfs a pdf icon in front etc. pp.

    • This reply was modified 8 years, 5 months ago by Guenni007.
    #867003

    Hi metrocitygirl,

    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

    
    #top .woocommerce-tabs .tabs li a {
      color: #fff;
    }
    .header_color .cart_dropdown .dropdown_widget li a,
     #top .header_color  .avia_cart_buttons .button,
      #top .header_color .dropdown_widget .buttons .button,
     .header_color .cart_dropdown_first .cart_dropdown_link,
      #top .header_color p.order-info mark {
        color: #fff !important;
      }
    

    How do I check the order page? Are you making test orders?

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #866908
    Jason E
    Participant

    I am trying to really hard to keep my sanity with this, but it feels like styling buttons dynamically with classes in Enfold is a exercise in insanity.

    Yes, I am aware I can style buttons individually, but that makes for a nightmare if you want to make changes. The idea of css is that you can style across the dom in a way that allow flexibility, yet precision.

    My goal is to have 5 different color schemes for buttons. I can do the css in my sleep, but it seems like no matter what I do, elements override what I am trying to accomplish.

    Is there a way to clear thematic button styling?

    Here’s why. Look at this selector:
    .avia-button-wrap.avia-button-left.avia-builder-el-19.el_after_av_textblock.avia-builder-el-last.button-section-ns

    It is a mess and I can do the changes I need to it, but then it will pick and choose what it wants to override, like the text colors within it.

    I am going to back away from it for a bit here and come back, but there has got to be a better way to do dynamic css classed buttons.

    #866699

    Hey Alexander,

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

    div form.cart div.quantity, button.single_add_to_cart_button {
        padding-top: 40px;
    }

    Best regards,
    Rikard

    #866665

    Hi mcraig77,

    There is too much text, the code below will work for the 375px screen and up, but still does not look good on the 320px screen.
    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

    
    @media only screen and (max-width: 767px) {  
      #av_section_1 {
        margin-top: 200px;
      }
      .responsive #top .slideshow_caption h2 {
          font-size: 16px !important;
      }
      .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
          padding-top: 10px;
      }
      .avia-caption-content p {
          margin: 0;
      }
    
      #top .avia-slideshow-button {
          padding: 10px 5px;
          margin-top: 15px;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #866540

    In reply to: Theme Questions

    Hey Willow,

    1.) That slider is created with the layer slider plugin and there’s a black overlay or layer above the images with transparent black background.

    2.) Yes, you can disable or enable fly out animations.

    3.) Yes, you can display the gallery inside a lightbox.

    4.) I’m sorry but we are not familiar with the plugin. Please contact the plugin author. The theme is compatible with the Woocommerce plugin.

    5.) We highly recommend the Enfold theme because it has the latest features and an advance layout builder which is very easy to use.

    6.) The theme has different kinds of galleries. Please check it in the demo. Also, note that we don’t provide support for third party plugins that is not native or fully configured in the theme.

    7.) There is a button element in the advance layout builder and you can configure the color options.

    8.) I’m sure you’ll be able to build different kinds of basic templates with the advance layout builder in no time.

    Best regards,
    Ismael

    #866386

    Hi raisonbrands,

    Thank you for the clarification.
    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

    
    .sort_by_cat a span  {
        display: block;
        background-color: #f36e21;
        color: #fff;
        padding: 5px 7px;
        border-radius: 5px;
       
    }
    .sort_by_cat  a {
    	 margin-left: 10px;
    }
    .filter {
    	 padding: 5px 7px;
    	 line-height: 32px;
    }
    .all_sort_button {
    	background-color: #f36e21;
    	border-radius: 5px;
    
    }
    #av_section_1 .sort_by_cat a.active_sort span.inner_sort_button span {
    	color: #666;
    }
    
    #av_section_1 .text-sep {
    	display: none;
    }
    .sort_by_cat a.active_sort span  {
        background-color: #f36e21 !important;
    }
    

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

    #866379
    Archie
    Participant

    Hi there Enfold team!

    I noticed that the contact form “submit” button does not center on mobile.

    http://prntscr.com/gzfprz

    The Label/Send Button alignment is currently set to “Default” and it is perfectly aligned to center on desktop view, but not on mobile. Curiously when I set it to center, it goes to the right side, both on desktop and mobile view.

    Can you look into this please?

    Thanks!

    #866261

    Hey ottoc,

    3) you can edit the footer.php file or add a widget to the footer area and paste the html in there.
    2) There is such an option to have different columns and and a title that is not the link in the mega menu.

    1) You can add custom links to the menu and then style them as buttons.

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

    #865889

    Hey,

    Please firstly make sure that you are using the latest version of Enfold which is currently 4.1.2 – http://kriesi.at/documentation/enfold/updating-your-theme-files/ and edit your page and find Tab Section element under Layout Elements tab of Advanced Layout Builder and add it to your page. You can click on the tab title to switch tabs and click this blue button – https://i.imgur.com/FVcFbVP.png to edit setting of your tab and add move any other element you would like to display on your tab by simply dragging them right below the content below titles. I hope that helps. If it does not, please let us know :)

    Best regards,
    Yigit

    #865684

    Hi Andrea,

    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

    
    
    @media only screen and (min-width: 768px) and (max-width: 1024px){
    
      .av_promobox.avia-button-yes.avia-builder-el-22 {
        text-align: center;
      }
      .av_promobox.avia-button-yes.avia-builder-el-22 .avia-button-right {
         display: inline-block;
          float: none; 
      }
    
      .av_promobox.avia-button-yes.avia-builder-el-22 .avia-button.avia-size-large {
        margin-top: 0;
      }
    }
    

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

    #865551

    Hey,

    so when i rewrite the functions.php in wp-content/theme/enfold the slider-element and also the lightbox-gallery don’t work.
    The Slide shows the bullet-points on bottom but no picture is loading or showing and on an other page the lightbox-gallery isn’t loading. When i click on the picture, this one opens in the same window instead of loading a lightbox-gallery with forward/back-buttons to navigate through the gallery.

    #865320
    Willow
    Guest

    Hello,

    I am looking into buying your theme for my photography site and blog. Could you answer a few questions for me?

    In Enfold 2017, can you lighten the opaqueness of the background photo at the top of the page, to make it more natural photo color vs. grayed out the way it is in the demo?

    Is there a way to slow or disable the quick “flash-y” transitions as you mouse down a page, with things flying in and out? And to remove the effects of the text sliding in on the homepage? I would like to make a site that’s a bit more simple, and not so flashy. Also, is there a way to have the mouse over effect be to have them get slightly brighter, instead of magnifying the images when you mouse over photos in the gallery?

    I like the masonry 4 column grid. Is there a way to set the gallery up so you can click on each image, and see it large/with captions?

    I am using a free plugin called Ecwid Shopping Cart for my website right now. Will it be compatible with your theme? If I sell more products in the future, or downloadable materials, are there many shopping carts that work in tandem your theme?

    What I’m looking for is a mobile responsive site with photos that load quickly. I need easy to navigate photo galleries, and a clear and easy to navigate blog, with capabilities for large photos, as well. I’d like navigation at the top of each page, and a full screen photo on the home page. Which of your themes would be best to accomplish this?

    Right now I am using another paid WordPress plugin for my photo gallery. Do you know how difficult it will be to get the galleries working if I purchase your theme? I think I can get rid of that plugin, if i use your web theme, right? How would I do that?

    Is there any way to customize buttons to have a red square when you mouse over the menu?

    ​Is there support once we purchase the theme? How long does it take to get an answer to a question? How big is the learning curve for using Enfold? I am pretty new to WordPress.

    Thank you very much. Looking forward to hearing more.

    #865006

    Hi,

    I edited your page and placed your button inside a Color Section element with a unique ID, choose to display no padding and added following code to Style.css file of your child theme

    #cart-section { min-height: 50px; }

    In your case, i think it will be the best if you copy header.php file to your child theme and apply the changes directly on the file. That would be a better solution in the long run.

    It seems like you figured out the rest already :)

    Best regards,
    Yigit

    #864969

    In reply to: SCROLL TO TOP

    Hi,

    1- Please use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and copy footer.php file from parent theme to your child theme and then edit the file on your child theme and add your button manually right before following line

    
    <a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>><span class="avia_hidden_link_text"><?php _e('Scroll to top','avia_framework'); ?></span></a>

    2- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .logo {
        top: 30px;
    }
    

    Best regards,
    Yigit

    #864890

    Yes, that is correct. But I need to use the woocommerce default pagination as the load more button is not working on categories which have 3 maximum pages only. Can you let me know how can I disable enfold’s default pagination and replace it with the original woocommerce pagination?

    #864775
    Maiko
    Guest

    Hello,

    we are using a newspaper theme currently. We have newspaper, blog and regular webpage mash-up. Problem is, that newspaper theme will not allow us to modify our pages like we’d like, we need to use a lot of plugins for just the simple things like buttons and menus. With pages, we can’t make presentation pages for our marketing customers and so on…

    Do you have any demos, or even better, some example sites, that are newspapers, or magazines and use your theme?

    Also newspaper has a good content management system, can you do the same with enfold, without a lot of custom code?

    Thanks

    Maiko Saluorg

    #864731

    Thank you, I have seen this.

    My question was about what form parameters are available to add in the event tracking. So what’s in the $form_params in the code snippet on your faq site http://kriesi.at/documentation/enfold/add-onclick-event-to-the-contact-form-submit-button/

    Sara

    #864676

    Hey mrb1972,

    Thank you for using Enfold.

    Please try to use the Plugin Additions > Product Purchase Button element. Or you can manually add the price in a code or text block.

    Best regards,
    Ismael

Viewing 30 results - 5,371 through 5,400 (of 11,212 total)