Forum Replies Created

Viewing 30 posts - 49,021 through 49,050 (of 66,092 total)
  • Author
    Posts
  • Hi flylanddesigns!

    Thank you for using Enfold.

    If possible, please provide a screenshot. Use dropbox or imgur. Add this to the Quick CSS field:

    .av-layout-grid-container {
      width: 100%;
      table-layout: auto;
      display: block;
    }

    Remove browser cache then reload the page. Let us know if it fix the issue.

    Cheers!
    Ismael

    in reply to: Background youtube, starting point #423339

    Hi!

    Unfortunately, youtube url start parameter will not work in the color section area because it’s not using html5 video players. You need to manually trim or crop the video. https://developers.google.com/youtube/player_parameters#start

    Cheers!
    Ismael

    in reply to: Problems with encoding in module Quotes after update #423332

    Hi!

    Please try to change the database character sets as described here: https://kriesi.at/support/topic/text-encoding-problems-after-latest-update/#post-423330

    Cheers!
    Ismael

    in reply to: Text encoding problems after latest update #423330

    Hi!

    Please try to edit wp-config.php then look for this code:

    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'utf8');

    Replace it with:

    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'koi8r_general_ci');
    

    If it doesn’t work, test other character sets and collations provided here: https://dev.mysql.com/doc/refman/5.0/en/charset-cyrillic-sets.html

    Best regards,
    Ismael

    in reply to: yoast video seo plugin cannot see video's #423327

    Hey!

    Looks like it’s working if you add the iframe code manually in a code or text block:

    <iframe src="https://www.youtube.com/embed/G0k3kHtyoqc" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
    

    Cheers!
    Ismael

    Hey!

    It seems to be an issue with the Events Calendar plugin. The blog works if the plugin is deactivated but I’m not sure why. Please try to contact the WPML and Events Calendar support for more info.

    Best regards,
    Ismael

    Hi!

    I checked the site and the back button works OK. Is this issue still happening? I’m sure you installed a cache plugin but I can’t seem to see any cache info on the site. Is the css cache still an issue?

    Regards,
    Ismael

    in reply to: Fullwidth Easy Slider Size In Mobile Version #422489

    Hey Phet!

    Thank you for using Enfold.

    I’m sorry but that is not possible without major customization on the theme. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: Woocommerce Layered Nav Filters #422482

    Hi Luke86!

    Thank you for using Enfold.

    The Woocommerce Layered Nav Filters widget will only work on the shop overview page. You can’t use it in the single product page.

    Cheers!
    Ismael

    in reply to: code under de body tag in a page #422477

    Hi!

    Thank you for using Enfold.

    You can add this to the function.php file to insert the div at the very top of the main container:

    add_action('ava_after_main_container','ava_after_main_container_mod');
    function ava_after_main_container_mod() {
    	if(is_page(11)) { echo "<div id='myAnchor'></div>"; }
    }

    Regards,
    Ismael

    in reply to: Pinit.js Overrides Social Share Button Styling #422455

    Hi!

    The script change the social share markup. It removes the data-av_icon attribute which contains the pinterest icon. You can create another pinterest icon image then set it as background:

    li.av-share-link.av-social-link-pinterest {
      background: url('pinterest-icon-here.png');
      background-position: center center;
      background-repeat: no-repeat;
    }
    
    li.av-share-link.av-social-link-pinterest a {
      background: none !important;
    }

    Best regards,
    Ismael

    Hi Harriet2323!

    Thank you for using Enfold.

    It’s not possible with the Portfolio Grid element but you can use the Blog Posts element to post portfolio items based on post tags. Set the blog style to grid layout.

    Regards,
    Ismael

    in reply to: Mobile Menu doesn't scroll well on ipad and iphone #422435

    Hey mgb913!

    Thank you for using Enfold.

    Please try to deactivate all plugins then test it again. If possible, please post the ftp and wp login credentials here so that we can inspect the site.

    Cheers!
    Ismael

    in reply to: Logo and nav over lapping #422431

    Hi!

    Did you add any other css modifications other the code above? Please use the same exact code above.

    Cheers!
    Ismael

    in reply to: MENU / Button Style (Bordered) #422426

    Hey!

    Add this to the Quick CSS field:

    #top .av-menu-button > a .avia-menu-text {
      border: 2px solid !important;
    }

    Regards,
    Ismael

    in reply to: Disappearing content on upgrade #422423

    Hi!

    Have you tried fetching the google map script again? Please post the google map code on pastebin.com. We’ll test it on our installation.

    Cheers!
    Ismael

    in reply to: expand sensitive area of image with hotspot #422420

    Hey Animals_Comunicazione!

    Thank you for using Enfold.

    Add this to the Quick CSS field to enlarge the hotspot circle:

    .responsive .av-image-hotspot {
      height: 50px;
      width: 50px;
      line-height: 50px;
      font-size: 11px;
    }

    Cheers!
    Ismael

    Hey!

    Please remove all css modification for the table then edit the table element on the page. Set the table purpose to tabular then adjust the responsive styling to make the entire table scrollable.

    Regards,
    Ismael

    in reply to: Color background #422349

    Hi!

    Alright. When you set the background to fixed or scroll, the background is directly applied to the section’s container so the background resize properly, proportionate to the color section size. If it is set to parallax it creates another container inside the section called av-parallax. This is where the background is applied and the height of this container is calculated dynamically. It is much taller than the actual color section and moves vertically upwards and/or downwards whenever you scroll to create the parallax effect. Since the height of the actual color section is shorter than the parallax container, it covers parts of the images when you resize the browser. Long story short: You are correct that it is not that responsive compare to the fixed or scroll position so the solution is to create another page with different layout and serve it as mobile version of the page. You can use this plugin to do that: https://wordpress.org/plugins/equivalent-mobile-redirect/

    If you don’t want to use a plugin, you can use css media queries to show or hide elements on different screen sizes. The Section ID field comes very handy:

    http://stackoverflow.com/questions/11796297/div-show-hide-media-query

    https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263

    https://kriesi.at/support/topic/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/

    https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/

    https://kriesi.at/support/topic/replace-slider-on-mobile/

    Best regards,
    Ismael

    in reply to: Main Menu Links – style changes not taking effect. #422340

    Hey!

    Yes, you can create a custom link then add the # symbol as URL.

    Best regards,
    Ismael

    in reply to: Codeblock unescaping escaped HTML #422339

    Hey!

    Sorry if you’re having difficulty with the code block element but claiming that the advance layout editor doesn’t work because you can’t make a single element behave the way you want it to seems to be a little too far-fetched. You can add this to the codeblock content:

    <?xml version="1.0" encoding="utf-8"?>
    <Profile Type="0" DisplayName="TIFF 200dpi Optimized Color"
             Description ="Word Printed 2-Up with Comments and Date Replacement.">
    
      <Settings>
    
        <span style="background-color: yellow;"><strong><!--Word Specific  options --></strong></span>
        <span style="background-color: yellow;"><strong><add Name="Microsoft.Word.Document.PrintOut.Item" Value="DocumentAndMarkup"></add></strong></span>
        <span style="background-color: yellow;"><strong><add Name="Microsoft.Word.PageSetup.TwoPagesOnOne" Value="True"></add></strong></span>
        <span style="background-color: yellow;"><strong><add Name="Microsoft.Word.ReplaceFieldDateWith" Value="***DATE***"></add></strong></span>
    
        <!-- Output file options -->
        <add Name="Devmode settings;Resolution" Value="200"></add>
        <add Name="Save;Output File Format" Value="TIFF Multipaged"></add>
        <add Name="Save;Append" Value="0"></add>
        <add Name="Save;Color reduction" Value="Optimal"></add>
        <add Name="Save;Dithering method" Value="Halftone"></add>
    
        <!-- TIFF Compression Options -->
        <add Name="TIFF File Format;BW compression" Value="Group4"></add>
        <add Name="TIFF File Format;Color compression" Value="LZW RGB"></add>
        <add Name="TIFF File Format;Indexed compression" Value="LZW"></add>
        <add Name="TIFF File Format;Greyscale compression" Value="LZW"></add>
        <add Name="JPEG File Format;Color compression" Value="Medium Quality"></add>
        <add Name="JPEG File Format;Greyscale compression" Value="High Quality"></add>
        <add Name="Image Options;Fax" Value="0"></add>
    
      </Settings>
    </Profile>

    We removed the wrappers like div, code and pre tags. Add the pre or code tag inside the Code Wrapper Element without the < and >. You can add additional attributes like class, style in the Code Wrapper Element Attributes elements field.

    Regards,
    Ismael

    in reply to: Events Calendar – Submenu based on location #422327

    Hey!

    You can’t add the fullwidth submenu element on category or archive pages. You can try this plugin to hide or show a specific menu items on a specific page including archive pages: https://wordpress.org/plugins/menu-items-visibility-control/

    It works like the widget logic plugin where you have to add wp conditional functions. You will need to create an extensive menu then specify the visibility by adding conditional functions.

    Cheers!
    Ismael

    Hey!

    If it is not inside the child theme folder then why is the font url directed to the krypton folder?

    @font-face {
    font-family: ‘segoe_printregular';
    src: url(‘http://kryptonescort.de/wp-content/themes/krypton/fonts/segoepr-webfont.eot’);
    src: url(‘http://kryptonescort.de/wp-content/themes/krypton/fonts/segoepr-webfont.eot?#iefix’) format(‘embedded-opentype’),
    url(‘http://kryptonescort.de/wp-content/themes/krypton/fonts/segoepr-webfont.woff’) format(‘woff’),
    url(‘http://kryptonescort.de/wp-content/themes/krypton/fonts/segoepr-webfont.ttf’) format(‘truetype’),
    url(‘http://kryptonescort.de/wp-content/themes/krypton/fonts/segoepr-webfont.svg#segoe_printregular’) format(‘svg’);
    font-weight: normal;
    font-style: normal;
    }

    Are you sure it is working on chrome and firefox? Please check it again.

    Regards,
    Ismael

    in reply to: Reducing logo size for mobile #422320

    Hey!

    Add this to the Quick CSS field to adjust the size of the image on mobile view:

    @media only screen and (max-width: 767px) {
    .home div#av_section_1 .container {
      height: auto !important;
    }
    
    .home div#av_section_1 main.template-page {
    padding: 10px 0 !important;
    }
    }

    Regards,
    Ismael

    in reply to: responsive grid container tweaks #422318

    Hi!

    Try to add this to the Quick CSS field:

    @media only screen and (max-width: 989px) {
    div#mob-bg .flex_column.av_one_third, div#mob-bg .flex_column.av_two_third {
      width: 100%;
    }}

    You might need to adjust the margins.

    Cheers!
    Ismael

    in reply to: Contact Form 2 felds in one line??? #422313

    Hey!

    I checked the page again on google structure data testing tool and the heading text is recognized as headline under CreativeWork panel:

    text:	Für Bauherren max. Sicherheit in der Bauzeit: Bauherrenhaftpflicht Top Tarife Schutz bei Personen- Sach- & Vermögensschäden Abwehr unberechtigter Schadenansprüche Schutz bei Verletzung spielender Kinder Sicherheit für Neubau & Umbau Eine Bauherrenhaftpflichtversicherung bietet Schutz für den Bauherr bei gesetzlichen Haftpflichtansprüchen. Kommt es durch Verletzung von Verkehrssicherungspflichten zu einem Schaden wird dieser beglichen oder falls unberechtigt wird Schadenabwehr betrieben.
    headline:	Bauherrenhaftpflicht

    Cheers!
    Ismael

    in reply to: headline rotator multiline #422309

    Hey catchmikey!

    Thank you for using Enfold.

    What is the font size of the rotator? Please post the page url here so that we can inspect it.

    Cheers!
    Ismael

    in reply to: easy slider caption on click #422303

    Hi!

    The images that you’re using in this page is a bit too big: http://kasahara.ch/what-i-offer/

    Do you want to remove the image overlay icon (big round circle with arrows on center)? Use this:

    span.image-overlay-inside {
      display: none !important;
    }

    I can’t see the issue with the caption background. Do you want to remove the “violet” canvas when you hover the image?

    Regards,
    Ismael

    in reply to: floating issue with Footer Columns in Vers. 3.1 #422299

    Hey!

    It has the same problem. The footer and socket container are floating outside the wrap_all container. Please post wp login details as well as the ftp credentials. We would like to check it.

    Cheers!
    Ismael

    in reply to: Submenu Always Open as Second Row #422294

    Hey Jason!

    Thank you for using Enfold.

    I’m sorry but that is not possible without major modification on the menu element and even if we succeed on displaying the submenu on desktop, a new problem with mobile menu will definitely show up. It will take more than css to accomplish this. Please hire a freelance developer or continue with the fullwidth submenu element.

    Best regards,
    Ismael

Viewing 30 posts - 49,021 through 49,050 (of 66,092 total)