Forum Replies Created

Viewing 30 posts - 30,391 through 30,420 (of 34,552 total)
  • Author
    Posts
  • in reply to: How to add custom CSS classes to different categories? #889687

    Hey paperdog2,
    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Mike

    in reply to: Demo import didn't work #889652

    Hi,
    You are getting a 500 (Internal Server Error) on wp-admin/admin-ajax.php
    I suggest looking at your server logs to see what the possible cause could be.

    Best regards,
    Mike

    in reply to: Image wirh link jumps onmouseover #889648

    Hey Jimmy-K,
    Try this code in the General Styling > Quick CSS field:

    .avia-builder-el-2 .av_textblock_section .avia_textblock a {
        display: inline-block!important;
    }

    Best regards,
    Mike

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

    Best regards,
    Mike

    in reply to: Tabs in Tab Section Not Switching #889638

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

    Best regards,
    Mike

    in reply to: Letter spacing Special Headings in Avia Layout Biuilder? #889636

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

    Best regards,
    Mike

    in reply to: Onepage Navigation #889634

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

    Best regards,
    Mike

    in reply to: hoizontal gallery end – start #889626

    Hey Karin_Tara,
    Sorry, that feature is not available yet Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Mike

    in reply to: Popup appears behind header & footer #889618

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

    .page-id-646 #header {z-index: 0 !important; }
    .page-id-646 .mm-wrap {z-index: 1000 !important; }

    Best regards,
    Mike

    in reply to: Updates destroy web design #889609

    Hi,
    I enabled the Avia Layout Builder Debug and copied your page to a clean install, which then worked correctly. Please see screenshot in Private Content area.
    Which leds me to believe your are experiencing a plugin conflict, Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause. Also try clearing any cache plugin and your browser cache after disabling your plugins.

    Best regards,
    Mike

    in reply to: Can't change parent page #889594

    Hi,
    Glad to hear, we will close this now. Thank you for using Enfold, and Merry Christmas.

    Best regards,
    Mike

    in reply to: Video and enfold #889591

    Hey minogig,
    I created a draft page “video test” with a video in it, which seems to be working. Please change the video to the one you are having issues with so we can see the issue.

    Best regards,
    Mike

    in reply to: Add Custom font in theme file #889583

    Hey danielromanin,
    To add a custom font to the layout builder please see this post: Installing own font

    Best regards,
    Mike

    in reply to: Enable Video Controls Pause/Play w/background video #889580

    Hi,
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: default P tag text size #889577

    Hey mjadvnt,
    Yes this is sound, but you may need to add !important; to force it, should it not apply.

    p {
    font-size: 1.3em!important; 
    }

    Another approach would be to go to Enfold Theme Options > Advanced Styling > and Select the p element to customize, yet you would need to choose a px value, instead of em

    Best regards,
    Mike

    in reply to: Socket/Copyright Line #889574

    Hey timkeeley,
    1. Add the below code to Enfold > General Styling > Quick CSS

    .push-right{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    }
    @media only screen and (max-width:767px) {
    .push-right{
    position:relative;
    right:auto;
    transform:none;
    }}

    2. Add the below html in Enfold > Footer > Copyrights

    <div class="push-right"> Text you like on the right side </div>

    Best regards,
    Mike

    in reply to: How to insert JSON-LD code in of website #889570

    Hi,
    Thanks for the link, from what I read:

    It is generally safe to insert JSON-LD code within the of your website, as such this is what we recommend. JSON-LD can also be inserted in the of a website, or anywhere else for that matter.

    with this in mind, to place the code in the head, try inserting in: Enfold Theme Options > Google Services > Google Analytics Tracking Code text box. This box can be used for any code to be placed in the head.
    If you want to place the code just before the closing body tag, then edit footer.php and look at the bottom, html can be used at that point of the file. We recommend creating a copy of the footer.php in your child theme with your changes so it will be preserved though theme updates.

    Best regards,
    Mike

    in reply to: Side Menu – Changing Logo Size and submenu settings #889553

    Hi,
    To change the line height of the items under “Startseite” Try this code in the General Styling > Quick CSS field:

    
    span.avia-menu-text {line-height: 30px!important; }

    Best regards,
    Mike

    in reply to: Mobile Layout Is Not Great #889550

    Hi,
    post_591 is not a valid entry, from what I can see you have no posts on your site only pages.
    Please include a link to the page you wanted to use. Also I don’t see a custom functions plugin, do you still have it installed?

    Best regards,
    Mike

    in reply to: add schema to single page of site #889548

    Hi,
    Were you able to use the custom_schema function above?

    Best regards,
    Mike

    in reply to: Conflict between Enfold, Google ads and WooCommerce #888560

    Hi,
    Glad it worked for you, for modifications please see our customization request page.

    Best regards,
    Mike

    in reply to: Load More Plugin for enfold #888559

    Hi,
    Sorry, I don’t know why those changes are slowing down your site unless it is creating a redirect loop. Do you have other rules in your .htaccess? After adding these rules did you try saving your permalink structure again?
    I see right now that “noticias-informacion-sobre-dinosaurios/page/1” redirects to “noticias-informacion-sobre-dinosaurios/”
    but noticias-informacion-sobre-dinosaurios/page/10 doesn’t
    Perhaps try the following rule if you want to rewrite /page/X/ to /page/ exactly. (where X is any number)

    RewriteRule ^page/([0-9]+)/$ http://domain.com/page/ [R=302,L]

    If you want to rewrite /[anystring]/X/ to /[anystring]/ you can try

    RewriteRule ^(.*)/([0-9]+)/$ http://domain.com/$1/ [R=302,L]

    maybe adding the url to the redirect will help stop a redirect loop

    Best regards,
    Mike

    in reply to: Fetch coordinates not working for Google maps #888549

    Hi,
    OK, if a unrestricted key is not working then you should try making a new unrestricted key, follow the links above the “Enter a valid Google Maps API Key to use all map related theme functions” in the Enfold Theme Options > Google Services.
    I entered my unrestricted API key and it worked.
    Note that it can take 5 minutes or more for your key to be valid for it to work.

    After getting a unrestricted key to work and you then want to restrict it, first try your url with the https:// if that doesn’t work try http:// , I have seen a couple of cases where that was the solution. But first get a unrestricted key to work.

    Best regards,
    Mike

    in reply to: enfold theme colour bug #888537

    Hi,
    shall we close this then?

    Best regards,
    Mike

    in reply to: Move add to basket to top #887949

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

    Best regards,
    Mike

    in reply to: Menu anchors not aligning anymore after remove logo #887947

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

    Best regards,
    Mike

    in reply to: CAN'T LOGIN ANYMORE! #887233

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Menu Links Background #887230

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

    Best regards,
    Mike

    in reply to: Phone and email link in team section? #887229

    Hi,
    Thank you for sharing your solution, shall we close this then?

    Best regards,
    Mike

    in reply to: Anchors #887228

    Hey MSM,
    You can use any id on a page as an anchor.
    You can also add a Code Block element to your page above your content and insert following as a anchor

    <div id="my-anchor"></div>

    Best regards,
    Mike

Viewing 30 posts - 30,391 through 30,420 (of 34,552 total)