Forum Replies Created

Viewing 30 posts - 24,511 through 24,540 (of 34,600 total)
  • Author
    Posts
  • in reply to: polylang flags #1020925

    Hey Stefan,
    Please see this documentation on adding the flags anywhere on your site. One solution is to create a header widget area and using the PolyLang widget.
    Another solution is adding this code to the end of your functions.php file in Appearance > Editor:

    function polylang_shortcode() {
    	ob_start();
    	pll_the_languages(array('show_flags'=>1,'show_names'=>0));
    	$flags = ob_get_clean();
    	return $flags;
    }
    add_shortcode( 'polylang', 'polylang_shortcode' );

    and then put the shortcode [polylang] to display the flags.

    Best regards,
    Mike

    in reply to: Import Custom Font & Logo Issue #1020915

    Hi,
    Please try using the Use Any Font plugin, it lists otf as a supported font.

    Best regards,
    Mike

    in reply to: Styling blog post elements – styling by category tag #1020911

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Cache and merge not working – not using cache plugin #1020610

    Hey GCSkye,
    Thanks for the login, I was able to get your merging to work again by enabling “always load all elements” in your performance settings and by enabling jQuery in the header, that is to un-check the “Load jQuery in your footer”.
    I tested a combination of these two settings and found that they must be this way to work on your site.
    I’m not sure why, because on my localhost this is not the case, the only thing I can’t check is your combination of plugins.

    Best regards,
    Mike

    in reply to: Duplicate Website page structure to another side #1020590

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold contact form not working #1020588

    Hi,
    Thank you, we will close this now as it’s quite old.

    Best regards,
    Mike

    in reply to: Styling blog post elements – styling by category tag #1020587

    Hi,
    To make the sidebar highlight box “more-link” white on hover, Please try this code in the General Styling > Quick CSS field:

    .news-content a.more-link:hover {
    color: #fff !important;
    }

    Best regards,
    Mike

    in reply to: Menu Breadcrumb #1020579

    Hi,
    Sorry, I didn’t find anything about the plugin, but I do see that it was last updated in 2014. Try asking the author I see he posted to someone else that he would give a refund if it didn’t work.
    I did find this site with links to css to make some nice breadcrumbs You would just need to modify the classes a little for Enfold.
    Here’s a working example I found:
    2018-10-11-230725

    .avia-breadcrumbs { 
      list-style: none; 
      overflow: hidden; 
      font: 18px Sans-Serif;
    }
    .avia-breadcrumbs span a,.avia-breadcrumbs span,.avia-breadcrumbs span.trail-before {
      color: white !important; 
      text-decoration: none; 
      padding: 10px 0px 10px 45px;
      background: brown; 
      background: hsla(34,85%,35%,1); 
      position: relative; 
      display: block; 
    }
    .avia-breadcrumbs span.trail-end {
      color: black !important; 
      text-decoration: none; 
      padding: 10px 0px 10px 45px;
      background: transparent !important;
      position: relative; 
      display: block; 
    }
    
    .avia-breadcrumbs span a::after,.avia-breadcrumbs span.trail-before::after { 
      content: " "; 
      display: block; 
      width: 0; 
      height: 0;
      border-top: 50px solid transparent; 
      border-bottom: 50px solid transparent;
      border-left: 30px solid hsla(34,85%,35%,1);
      position: absolute;
      top: 50%;
      margin-top: -50px; 
      left: 100%;
      z-index: 2; 
    }
    
    span.sep {display:none !important; }
    
    .avia-breadcrumbs span a::before,.avia-breadcrumbs span.trail-before::before { 
      content: " "; 
      display: block; 
      width: 0; 
      height: 0;
      border-top: 50px solid transparent;       
      border-bottom: 50px solid transparent;
      border-left: 30px solid white;
      position: absolute;
      top: 50%;
      margin-top: -50px; 
      margin-left: 1px;
      left: 100%;
      z-index: 1; 
    }
    
    .avia-breadcrumbs span.trail-before {
      padding-left: 10px;
    background:        hsla(34,85%,35%,1);
    }
    .avia-breadcrumbs span:nth-child(2) a       { background:        hsla(34,85%,45%,1); }
    .avia-breadcrumbs span:nth-child(2) a:after { border-left-color: hsla(34,85%,45%,1); }
    .avia-breadcrumbs span:nth-child(3) a       { background:        hsla(34,85%,55%,1); }
    .avia-breadcrumbs span:nth-child(3) a:after { border-left-color: hsla(34,85%,55%,1); }
    .avia-breadcrumbs span:nth-child(4) a       { background:        hsla(34,85%,65%,1); }
    .avia-breadcrumbs span:nth-child(4) a:after { border-left-color: hsla(34,85%,65%,1); }
    .avia-breadcrumbs span:nth-child(5) a       { background:        hsla(34,85%,75%,1); }
    .avia-breadcrumbs span:nth-child(5) a:after { border-left-color: hsla(34,85%,75%,1); }
     

    Best regards,
    Mike

    in reply to: Decrease space between columns #1020552

    Hi,
    Thank you for the login, I have made the adjustments but you may need to clear your browser cache to see them.
    To make this change I turned on your custom class fields in your elements by going to Enfold Theme Options > Layout Builder > Show element options for developers, then I added the two classes “custom-right-column” & “custom-left-column”
    then I added this code in the General Styling > Quick CSS field:

    
    /*custom column width - bucharest*/
    #top.page-id-438 .custom-right-column {
    margin-left: 0px !important;
    width: 67% !important;
    }
    #top.page-id-438 .custom-left-column {
    width: 30% !important;
    }

    The columns are very close together now, if they are too close, please adjust the “margin-left: 0px” to perhaps “5px” or more.
    This solution will only effect the one page, please let use know if you want it to effect other pages.

    Best regards,
    Mike

    in reply to: caption alignment and line height #1020549

    Hi,
    Thank you for the login, Please try this code in the General Styling > Quick CSS field:

    .wp-caption-text {
    text-align: left !important; 
    line-height: 1.3em !important; 
    }

    Please feel free to adjust the line-height to suit.

    Best regards,
    Mike

    in reply to: Slanted/diagonal borders with image do not work #1020547

    Hi,
    Great tutorial and video, thanks for sharing.

    Best regards,
    Mike

    in reply to: Center content and show breadcrumbs #1020545

    Hi,
    Great solution, thanks for sharing.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos {
        vertical-align: bottom !important; 
    }

    Best regards,
    Mike

    in reply to: caption alignment and line height #1020169

    Hey Susanne,
    I tried to look at your page, but I received a message that it was “under construction.” I believe we will need to login to see your page. Please advise.

    Best regards,
    Mike

    in reply to: Decrease space between columns #1020166

    Hey Susanne,
    I tried to look at your page, but I received a message that it was “under construction.” I believe we will need to login to see your page. Please advise.

    Best regards,
    Mike

    in reply to: Menu Breadcrumb #1020162

    Hey ezfl0w,
    Typically you would add it to in your theme files where you would lke it to show, such as single.php
    Unfortunately I tested this plugin and it doesn’t work with Enfold, and by looking at the warning on the plugin page:

    This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

    it may not work with the wordpress core anymore.

    Best regards,
    Mike

    in reply to: Sidebar article page showing Kriesi.at Facebook page #1020159

    Hey biosdi,
    Please add a widget to the sidebar and these will be removed, you can even add a empty widget if you are not ready to add sidebar content yet.

    Best regards,
    Mike

    in reply to: Enfold editing socket #1020154

    Hey vaviv,
    Please go to Enfold Theme Options > Footer > Copyright, and enter

    [nolink]

    this will remove the:

    © Copyright - Enfold 2017 - Enfold Theme by Kriesi

    you can also add your own text after the [nolink] code

    Best regards,
    Mike

    in reply to: reduce padding #1020147

    Hi,
    Glad Rikard could help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Table responsive mode #1020143

    Hey timchurchman,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
    #top.page-id-4017 #av-layout-grid-1 .avia_scrollable_table .avia-table {
        width: 100% !important; 
    }
    }

    expected results:
    2018-10-10_223743

    Best regards,
    Mike

    in reply to: Enfold contact form not working #1020120

    Hi,

    @yohanna16
    , I recently saw a issue were the user included a html tag in the title field of a check box element which seemed to be braking the form. The solution was to remove the html and un-require the form elements and save, then the elements could be set to required again and save again. Are you adding links or “strong” tags in your contact form titles?
    If this doesn’t help, Please open a new thread so we can assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private.

    Best regards,
    Mike

    in reply to: Slanted/diagonal borders with image do not work #1020119

    Hi,

    @Guenni007
    great examples, I had found this interesting tool: CSS clip-path maker

    Best regards,
    Mike

    in reply to: Preview button makes changes go live #1020117

    Hi,
    Glad to hear that it is sorted out. Do you mind sharing which plugin was causing the issue?
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Shop page: add text before products #1020114

    Hi,
    Glad we could help, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Cant Access WP Admin After Theme Update via FTP #1020113

    Hi,
    Glad to hear this has been resolved, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Duplicate Website page structure to another side #1020111

    Hi,
    I linked to the law demo custom footer page in the Private Content area.

    Best regards,
    Mike

    in reply to: Restrict Content Pro #1020108

    Hi,
    Thanks for the feedback, I look forward to hearing your results,
    Perhaps if the second option doesn’t help, if you could create a test page with an element wrapped in the shortcode, that we can test with, it will help us look further into this.

    Best regards,
    Mike

    in reply to: Center content and show breadcrumbs #1019947

    Hi,
    I believe that instead of enabling the title bar on a transparent header by modifying the theme, we should add the breadcrumbs as a shortcode and add the shortcode in a code block at the bottom of the page.
    Then move the breadcrumbs under the menu with this javascript:

    jQuery(window).load(function(){
        jQuery( '.breadcrumb.breadcrumbs.avia-breadcrumbs' ).insertAfter( '.avia-menu.av-main-nav-wrap' );
        });
    

    and hide the code block and style the breadcrumbs with css such as this:

    .avia-breadcrumbs,.avia-breadcrumbs a {
    color: #fff !important;
    }
    #after_full_slider_1 {
    display: none !important;
    }

    I tested this on my localhost, and it seemed to get the results you are trying for:
    2018-10-10_080032
    (my example would still need a little more styling)
    Would it be ok for me to try this on your site?

    Best regards,
    Mike

    in reply to: Shop page: add text before products #1019926

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: white gap on first line of photos #1019784

    Hey bobfurgo,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (min-width: 767px) { 
    .leadership-images-container-grid .-flextable {
    margin-bottom: -11px !important; 
    }
    }

    Best regards,
    Mike

Viewing 30 posts - 24,511 through 24,540 (of 34,600 total)