Forum Replies Created

Viewing 30 posts - 19,531 through 19,560 (of 34,221 total)
  • Author
    Posts
  • in reply to: issue with a black line showing around masonry tiles #1125358

    Hi,
    Sorry for the late reply, please try this css in the Quick CSS:

    a.av-masonry-entry.isotope-item {
    border-color: transparent !important;
    }

    Then clear your browser cache and any cache plugin, and the Enfold Theme Options > Performance > JS & CSS file merging and compression and check.

    Best regards,
    Mike

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Next/previous Post navigation #1125311

    Hi,
    Please try this solution

    Best regards,
    Mike

    in reply to: Font upload issue #1125299

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Font style in all my posts #1125298

    Hi,
    Oh I see, the text transform was on a page, please try this css:

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
        text-transform: none !important; 
    }

    For you post font please remove the previous css and clear your autoptimize plugin, and try this css in the WordPress > Customize > Additional CSS because it has priority:

    #top.single-post h1.av-special-heading-tag {
        font-size: 34px !important; 
        font-weight: 700 !important; 
        line-height: 38px !important; 
        margin-bottom: 20px !important; 
        font-family: 'noticia text' !important; 
    }
    #top.single-post h2 {
        font-size: 33px !important; 
        font-weight: 700 !important; 
        line-height: 43px !important; 
        margin-bottom: 13px !important; 
        font-family: 'noticia text' !important; 
    }
    #top.single-post p {
        font-size: 19px !important; 
        font-weight: 400 !important; 
        line-height: 30px !important;
        font-family: 'noticia text' !important; 
    }
    #top.single-post li {
        font-size: 19px !important; 
        font-weight: 400 !important; 
        line-height: 30px !important;
        font-family: 'noticia text' !important; 
    }

    on the page your cloning from the first paragraph is italic, but on your page it’s not, so I assume we are ignoring that.

    Best regards,
    Mike

    in reply to: Font upload issue #1125282

    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: Demo import problem #1125271

    Hi,
    Thanks for the login, when importing the demo I see that you are getting this error:

    Failed to load resource: the server responded with a status of 500 (admin-ajax.php)

    Please try asking your webhost to check your PHP settings to see if the secure options are activated.
    “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
    Try turning these “on”.
    Also, ask them to see if the server log has additional info on the error.

    Best regards,
    Mike

    in reply to: Enfold – Lawyer Demo #1125258

    Hi,

    @seomar
    Thanks for the link, I see that you are getting a 404 error for the icon fonts, when you see them in the Advanced Layout Builder do they look like little squares?
    Please try uploading the fonts via ftp to this path:
    /wp-content/uploads/avia_fonts/justice/justice.woff
    /wp-content/uploads/avia_fonts/justice/justice.ttf

    https://www.dropbox.com/s/g24dthy6m4t4fu8/lawyer-demo-icons-justice.zip?dl=0

    If this doesn’t help, please include an admin login and ftp access in the private content area of a new thread so we can be of more assistance. Since this is not your thread your info won’t be private here.

    Best regards,
    Mike

    in reply to: Style contact form #1125224

    Hi,
    Sorry for the late reply, to correct the checkbox please try this css:

    #top.home .av_form_privacy_check {
    	float: none !important;
    }

    For your placeholders and input text please disable your Fast Velocity Minify plugin and clear your Firefox cache and check.
    It also seems that you do have the ::-webkit-input-placeholder for the Chrome browser, but I don’t see the ::-moz-placeholder that Firefox uses, please try adding this:

    ::-moz-placeholder {
      font-family: Gilroy-Bold !important; 
      font-size: 16pt !important;
    }

    Are you adding the css to the Quick CSS or to your child theme stylesheet?
    Please try copying your custom css and pasting it in the WordPress > Customize > Additional CSS to see if you have any errors such as a missing bracket. The errors will show with a red “x”
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Create a Blog for the first time! Some questions… #1125200

    Hi,
    Sorry for the late reply, I have taken a look at your first image again and see that you would like to move the date to the top under the headline and move the category to the end of your menu.
    Please see the screenshot in Private Content area.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $( 'body' ).each(function() {
    $( this ).find( '.date-container' ).insertAfter( $(this).find('h2.post-title') );
    $( this ).find( '.blog-categories.minor-meta' ).insertAfter( $(this).find('.current-menu-item') );
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    and this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header .av-main-nav > li > a,.blog-categories.minor-meta > a {
        font-size: 17px !important;
        letter-spacing: 0.04em !important; 
        font-weight: bold;
        padding: 0 10px;
    }
    

    To correct your button hover color please try this css:

    #top.single-post .avia-button-center a.avia-button:hover {
    background: rgba(204, 204, 204, 1) !important;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Icons in color #1124609

    Hey tbouvy,
    Sorry for the late reply, typically the fontello icons are only available in “gray scale” because they are “fonts” and SVG is not supported by WordPress without a plugin. But we can try to assist if we can see the icons, I assume you mean the icons in the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Font upload issue #1124570

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h3.aviaccordion-title {
    color: #fff !important;
    text-shadow: 1px 0 0 currentColor;
    }

    Best regards,
    Mike

    Hi,
    Glad to hear. Thank you for using Enfold. We will close this now.

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

    Best regards,
    Mike

    in reply to: Add second widget in header #1124533

    Hi,
    Glad to hear, 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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Socket size #1124529

    Hi,
    Glad 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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Add second widget in header #1124456

    Hi,
    Glad you were able to adjust the css, but when I check your sites the phone # is the same on both sites in mobile.
    Please see the screenshot in Private Content area.
    Am I understanding correctly?

    Best regards,
    Mike

    in reply to: Change featured image in shop when category is selected #1124453

    Hi,
    Please see the Private Content area.

    Best regards,
    Mike

    Hi,
    Thank you for the login, I disabled your css merging at:
    Enfold Theme Options > Performance > JS & CSS file merging and compression
    and your Autoptimize plugin, now I don’t see the “flash”, please clear your browser cache and check.
    You should be able to re-activate these without further issues, but I recommend leaving these off until your site is done so your not fighting with the cache.

    Best regards,
    Mike

    in reply to: Header (logo area) background image not showing up #1124444

    Hi,
    Thanks for the logins, I uploaded the beta for you and activated it for you.
    Please check the site and see if this helped and advise.

    Best regards,
    Mike

    in reply to: Design gekauft #1124443

    Hi,
    Vielen Dank, ich habe Ihr Konto mit der neuen E-Mail aktualisiert. Bitte melden Sie sich an.

    — Translated with Google —

    Thank you, I updated your account with the new email. Please try logging in.

    Best regards,
    Mike

    in reply to: how to create a line sperator with text in the middle #1124442

    Hey webworm72,
    Please try this CodePen or this example from CSS Tricks
    Here is an example where the lines are on the sides of an H2 heading, but you will need to change the class “.post-entry-49” to your page class.

    /* lines on sides of H2 in textblock - heading style */
    @media only screen and (min-width: 768px) { 
      .post-entry-49 .avia_textblock {
        line-height: 0.5;
        text-align: center;
      }
      .post-entry-49 .avia_textblock h2 {
        display: inline-block;
        position: relative; 
        line-height: 0.2; 
      }
      .post-entry-49 .avia_textblock h2:before,
      .post-entry-49 .avia_textblock h2:after {
        content: "";
        position: absolute;
        height: 5px;
        border-bottom: 1px solid black;
        border-top: 1px solid black;
        top: 0;
        width: 200%;
      }
      .post-entry-49 .avia_textblock h2:before {
        right: 100%;
        margin-right: 15px;
      }
      .post-entry-49 .avia_textblock h2:after {
        left: 100%;
        margin-left: 15px;
      }
      }
      @media only screen and (max-width: 767px) { 
      .post-entry-49 .avia_textblock {
        line-height: 0.5;
        text-align: center;
      }
      .post-entry-49 .avia_textblock h2 {
        display: inline-block;
        position: relative; 
        line-height: 0.2; 
          padding-top: 0px !important; 
      }
      .post-entry-49 .avia_textblock h2:before,
      .post-entry-49 .avia_textblock h2:after {
        content: "";
        position: absolute;
        height: 5px;
        border-bottom: 1px solid black;
        border-top: 1px solid black;
        top: 0;
        width: 75%;
      }
      .post-entry-49 .avia_textblock h2:before {
        right: 100%;
        margin-right: 15px;
      }
      .post-entry-49 .avia_textblock h2:after {
        left: 100%;
        margin-left: 15px;
      }
      }
    

    If you check out the two links above and compare to this css I believe you’ll understand how this works. Otherwise, if you create a test page and give us admin access we can assist further.

    Best regards,
    Mike

    in reply to: Images not showing with grid row on mobile #1124441

    Hey Christopher,
    Thanks for the login, I adjusted your css to this:

    @media only screen and (max-width:767px){
    .flex_cell.no_margin.av_one_half {
    min-height: 280px !important; 
    }
    }

    and cleared your site cache, this seems to be working now.
    Please clear your browser cache and check.

    *The reason your css was not working correctly is because the class “.avia-builder-el-6” and the ID “#av-layout-grid-1” was for a certain element, not all of them. Removing these allows it to work for all of them. I hope this helps explain.

    Best regards,
    Mike

    in reply to: Image Fade in on scoll #1124440

    Hey Manuel,
    Thanks for the link, using your image’s class “portraittest” I believe this css will achieve what you are looking for:

    .portraittest {
        -webkit-animation: avia-ttb 3.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275) !important; 
        animation: avia-ttb 3.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275) !important; 
        opacity: 1;
    }

    Please note the 3.8s at the beginning, this makes the animation slower/longer, by default it is 0.8s, so please adjust to suit.
    I recommend adding the css to WordPress > Customize > Additional CSS as it has priority, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Style contact form #1124436

    Hey Carolin,
    Sorry for the late reply, I have taken a look at your contact form, but the placeholder font and the actual font seem the same for me, and the checkbox is in front of the sentence, please advise.
    Please see the screenshot in Private Content area.
    To adjust the button, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .av-light-form .button {
        color: #C4673B !important; 
        background-color: #fff !important; 
    }
    #top.home .av-light-form .button:hover {
        color: #fff !important; 
        background-color: #C4673B !important; 
    }

    Best regards,
    Mike

    in reply to: Design gekauft #1124432

    Hey Ilhan,
    Ich habe Ihr Konto gefunden, aber wir müssen die richtige E-Mail-Adresse kennen, um die falsche zu ersetzen.

    — Translated with Google —

    Best regards,
    Mike

    in reply to: Socket size #1124431

    Hey Charlotte,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #socket .social_bookmarks li a {
    width: 50px!important; 
    line-height: 50px!important; 
    min-height: 50px!important; 
    font-size: 30px;
    }
    
    #socket .social_bookmarks li {
    height: 50px!important; 
    width: 50px!important; 
    }
    
    #socket .social_bookmarks {
        height: 60px!important;
    }
    #socket span.copyright {
    	font-size: 20px !important;
    }

    Please adjust to suit.

    Best regards,
    Mike

    in reply to: Enfold theme – crashes site – 500 error #1124413

    Hi,
    Thanks for your feedback, please provide ftp access because if activating the theme crashes the site ftp access with allow us to reset the site. I just would not want to crash it and have to wait for you to reset it.
    I tried a server check plugin and see that you have PHP v7.3.7 this look a little “if’y” for me, as v7.3.7 is not stable (in my experience) but this may not be the issue, I won’t know until I crash it :)
    Please see the Private Content area for my IP.

    Best regards,
    Mike

    in reply to: Dark Photography #1124396

    Hi,
    Sorry for the late reply, when I look at your page for desktop I see the image is “parallax” which is where the image is fixed and the page and text moves over it, and for mobile the image moves with the page.
    So if I understand correctly, you would like to remove the “parallax”?

    Yet, for desktop the image seems to be full size (whole), so I assume this also refers to removing the “parallax”, correct?

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I see the same issue as above in your merged css:

    h1,h2,h3,h4,h5,h6 {
        font-weight: 600;
    }

    loading first, this is what is causing the “flash”, I believe clearing the merged css (turning off) will correct.
    Please try, if you still see this please include an admin login in the Private Content area so we can assist further.

    Best regards,
    Mike

    in reply to: Font style in all my posts #1124381

    Hi,
    Sorry for the late reply, I tried to find an uppercase heading on your page that is forced by css, but did not.
    Please see the screenshot in Private Content area.

    Please try adding this css to correct the text on your page:

    #top.single-post #wrap_all strong,#top.single-post #wrap_all div {
    	font-family: 'noticia text', serif !important;
        color: #333 !important; 
        font-weight: 400 !important; 
        text-transform: none !important; 
    }

    or adjust the css above like this:

    #top.single-post #wrap_all h1,
    #top.single-post #wrap_all h2,
    #top.single-post #wrap_all h3,
    #top.single-post #wrap_all h4,
    #top.single-post #wrap_all .post-entry p,
    #top.single-post #wrap_all .post-entry a,
    #top.single-post #wrap_all .entry-content,
    #top.single-post #wrap_all strong,
    #top.single-post #wrap_all div {
    	font-family: 'noticia text', serif !important;
        color: #333 !important; 
        font-weight: 400 !important; 
        text-transform: none !important; 
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

Viewing 30 posts - 19,531 through 19,560 (of 34,221 total)