Forum Replies Created

Viewing 30 posts - 8,521 through 8,550 (of 67,453 total)
  • Author
    Posts
  • Hi,

    We checked the first site. You may need to access the Google ReCAPTCHA console, edit the API key and include the site URL in the domains section. The changes may take a while to propagate (about 5 minutes or so), so you may need to wait for a bit before testing it again.

    Best regards,
    Ismael

    Hey hyrion,

    Thank you for the inquiry.

    Yes, it is possible to create a layout where two columns partially overlap each other. To achieve this, you can use a combination of CSS positioning and negative margins.

    Here is an example HTML and CSS code that demonstrates how to create the overlapping columns layout:

    HTML:

    
    <div class="container">
    <div class="column column1">
    <h2>Column 1</h2>
    Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    
    </div>
    <div class="column column2">
    <h2>Column 2</h2>
    <img src="image.jpg" alt="Image"></div>
    </div>
    

    CSS:

    .container {
      position: relative;
      overflow: hidden;
    }
    
    .column {
      position: relative;
      z-index: 1;
    }
    
    .column1 {
      margin-right: -50px;
    }
    
    .column2 {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 2;
      margin-top: 50px;
    }
    
    

    In this code, we have created a container element that has its position set to relative and overflow set to hidden. This will create a clipping mask that will hide any content that goes beyond the container’s boundaries.

    Then, we have created two columns inside the container, with the first column having a negative margin to overlap with the second column. The second column is positioned absolutely with top, right, and margin-top properties, and has a higher z-index to appear on top of the first column.

    You can adjust the values of the margin, top, right, and margin-top properties according to your design needs to achieve the desired overlap. Additionally, you can replace the img element in the second column with any other media element like a video or a slideshow.

    You can also do this using the Column elements in the Advance Layout Builder. Apply a Custom CSS Class or ID to the column element, then adjust the above css code accordingly.

    I hope this helps!

    Best regards,
    Ismael

    in reply to: Contact form button color #1402714

    Hi,

    We can’t see other issues with the contact form, but the color of the submit button seems to be the same without the suggested modification above. Did you remove the css code? Please provide a screenshot of the issue using imgur, savvyify or dropbox.

    Best regards,
    Ismael

    in reply to: Search bar for products in header #1402713

    Hi,

    Glad to know that the suggestions above are working. To adjust the width of the search bar, please add this css code.

    #top .av_minimal_header #s {
        border: none;
        padding: 12px 47px 12px 5px;
        width: 400px;
    }
    

    And regarding the icon account, you may also need to add this icon in a widget, same as the search bar, instead of appending it to the main menu.

    Best regards,
    Ismael

    Hey adepreter,

    Thank you for the inquiry.

    The slider numbers should not be visible by default. Did you make it viuible with css? If you want to hide it again, please use this css code.

    .avia-slideshow-dots a {
        text-indent: 9999px;
    }
    

    If you need to only hide it on mobile view, use this instead.

    .avia-slideshow-dots a {
        text-indent: 0;
    }
    
    @media only screen and (max-width: 767px) {
      .avia-slideshow-dots a {
          text-indent: 9999px;
      }
    }

    Best regards,
    Ismael

    in reply to: Slider isues #1402711

    Hey orthomedtherapyro,

    Thank you for the inquiry.

    We may need to access the site in order to inspect the sliders. Please provide the site details in the private field and include a screenshot of the issue.

    Did you add html tags in the slider captions? It is possible that the third slider contains a different html tag.

    Best regards,
    Ismael

    in reply to: Parallax Performance settings #1402639

    Hi,

    Thank you for the update.

    Please share the zip file in the private field, maybe using dropbox or onedrive. Have you done any of the optimizations provided in the following articles?

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this is working correctly now. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Attach form file #1402635

    Hey Martin,

    Thank you for the inquiry.

    This options is not available in the default contact form element in the theme, but it is still possible with a plugin such as the Contact Form 7 or WPForms. They got extensions that should allow users to upload a file before sending the form.

    Best regards,
    Ismael

    in reply to: customize buttons as h1, h2, h3… #1402634

    Hi,

    Thank you for the update.

    Have you tried using the Special Heading element instead of manually adding the heading in a text block? You will then be able to manually adjust the style of the heading as you wish. For more customizations, you can also edit the heading elements in the Enfold > Advanced Styling panel or add your own css modifications in the Enfold > General Styling > Quick CSS field.

    Best regards,
    Ismael

    in reply to: Transparent header on mobile #1402632

    Hey GavinGriffiths,

    Thank you for the inquiry

    You can add this css code to make the header transparent and fixed on mobile view.

    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    
      .html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
        background-color: transparent;
      }
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Contact form button color #1402629

    Hey mvucic1,

    Thank you for the inquiry.

    The site is not loading correctly on our end. Is the URL correct? Please check the info carefully so that we can access the site and check the contact form.

    You can try this css code to adjust the style of the submit button.

    div .main_color .button, .main_color #submit, .main_color input[type='submit'] {
        background-color: red;
        color: green;
        border-color: blue;
    }
    

    Best regards,
    Ismael

    in reply to: Cannot show copyright at the footer #1402628

    Hey vuong1311,

    Thank you for the inquiry.

    The html of the footer container seems to be incorrect. Did you modify the footer.php file?

    To remove the default copyright info, you can add the following text in the copyright field along with your custom text.

    [nolink] You copyright info here
    

    Best regards,
    Ismael

    in reply to: Adjust extra elements in header #1402627

    Hi,

    Thank you for the update.

    We are not able to reproduce the issue on Edge but you can try this css code to create more space for the fb icons on smaller screens.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #top .phone-info div a span {
          font-size: 11px !important;
          margin-left: -5px;
      }
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Error Code 659 #1402626

    Hi,

    Great! Glad to know that this is working correctly now. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: catalogue element in mobile view #1402593

    Hi,

    Thank you for the inquiry.

    You can add this css code to adjust the right padding of the catalogue item title and prevent it from overlapping with the product price on mobile view.

    .av-catalogue-title {
        padding-right: 150px;
    }
    

    Best regards,
    Ismael

    in reply to: Style WPML Custom language switcher #1402592

    Hey Markus,

    Thank you for the inquiry.

    How did you assign colors to the language switcher? If you add some css codes, you may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to regenerate the stylesheets.

    To change the color of the text, you can try this css code.

    .menu-item-language .wpml-ls-display {
        color: red;
    }
    

    Best regards,
    Ismael

    Hey Kersversbusiness,

    Thank you for the inquiry.

    There is an error with the API key when we checked the site.

    Uncaught Error: Invalid site key or not loaded in api.js: APIKEY
        at Array.<anonymous> (recaptcha__en.js:177:171)
        at recaptcha__en.js:293:118
        at avia_google_recaptcha_api.js:266:20
    

    Please make sure to generate a private key using the correct version of the API and make sure to add the site in the domain section of the API key editor.

    Best regards,
    Ismael

    in reply to: Search bar for products in header #1402590

    Hey andupro,

    Thank you for the inquiry.

    You can add the search bar in a text widget and use a hook to insert the widget inside the header area. Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: Using the custom blog layout post not working #1402229

    Hey Global4Net,

    Thank you for the inquiry.

    Did you set the Enfold > Blog Layout > Blog Layout settings to “Use the advance layout builder..”? By selecting this option, the advance layout builder will be activated for the blog page. You should also reset the options in the Settings > Reading panel to default. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Woocommerce VAT-suffix #1402228

    Hey Wollenhaupt,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field, screenshots will also help.

    Did you add or set up a new tax rate in the Woocommerce settings?

    // https://woocommerce.com/document/setting-up-taxes-in-woocommerce/#setting-up-tax-rates

    Best regards,
    Ismael

    in reply to: Facing page navigation issues, dosnt get page contents. #1402227

    Hey work365,

    Thank you for the inquiry.

    What is the current version of the theme in your installation? A patch for the pagination issue has been included in the latest version of the theme sometime ago. Please try to upgrade to version 5.5, then toggle or temporarily disable the Enfold > Performance > File Compression settings. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Problem with Woocommerce product attributes #1402226

    Hey Günter,

    Thank you for the inquiry.

    Are you using a product element in the builder? Would you mind providing a screenshot of the issue? Please use imgur, savvyify or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: custom icone/flipbox #1402225

    Hey Gianluca,

    Thank you for the inquiry.

    Yes, you can upload custom icons from fontello or flaticon (only monocolored icons). Please check the documentation below for more info about the Iconfont Manager.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: how to identify which images are actually attached #1402224

    Hey laptophobo,

    Thank you for the inquiry.

    You can try the following plugin but make sure to do it on a cloned/dev site or make sure to create a backup of the site first.

    // https://wordpress.org/plugins/auto-delete-unattached-media/

    Best regards,
    Ismael

    in reply to: Cannot seem to use Enfold Layout Builder for Blog #1402222

    Hey Eleina,

    Thank you for the inquiry.

    Did you create a post category with the same name as the page? You may need to rename either one of the two (the page or the category) and make sure that their names and slugs are unique.

    We tried to login to the site but you may have incorrectly paste the wp-admin URL as the password. Please check the info in the private field.

    Best regards,
    Ismael

    in reply to: Always geting ” Saving didn’twork” #1402221

    Hi,

    We need access to the WordPress dashboard. Please include the details in the private field.

    Best regards,
    Ismael

    in reply to: Latest Portfolio Widget #1402220

    Hi,

    is it possible to define the position of the title in relation to the bottom of the image, so that it is always at the bottom?

    You can try this css code to adjust the positioning of the title. It may require adjustments on different screen sizes.

    portfoliobox-3 .news-headline {
        margin-bottom: 0px;
        bottom: 0;
        position: absolute;
        padding-left: 40px;
    }
    

    Best regards,
    Ismael

    in reply to: Layer with captions in ‘Fullwidth Easy Slider’ #1402219

    Hi,

    I cannot find it. I went > Pages > Edit the page featuring the slider > click on the slider element > picked the tab ‘Styling’ and I do not see it.

    You have to edit one of the slides, and go to the Styling tab. You should see the caption positioning option there. You can define a different caption positioning and overlay for each slide.

    Best regards,
    Ismael

    in reply to: Page with missing or incorrect canonical reference #1402218

    Hi,

    Yes, please provide the login details in the private field so that we can check the settings. Did you install an SEO plugin?

    Best regards,
    Ismael

Viewing 30 posts - 8,521 through 8,550 (of 67,453 total)