Forum Replies Created

Viewing 30 posts - 28,861 through 28,890 (of 34,558 total)
  • Author
    Posts
  • in reply to: Spacing #914822

    Hi,
    Unfortunately there is not, it is just how justify is meant to work.

    Best regards,
    Mike

    in reply to: Transparent Menu ONLY on Specific Page #914805

    Hi,
    Thank you for the new link, there was something wrong with the other links as I was seeing a “page not found” Please see screenshot in Private Content area. Anyways, now I see your page.
    Please try replacing your code with this:

    #top.page-id-9016 .header_color.av_header_transparency .avia_mega_div, 
    #top.page-id-9016 .header_color.av_header_transparency .av-main-nav ul,
    #top.page-id-9016 .header_color.av_header_transparency .av-main-nav ul a {
    background: rgba(30, 69, 74, 0.3) !important;
    }

    If this doesn’t work please disable the current code so we can test new code. Thanks for your patience.

    Best regards,
    Mike

    in reply to: Placing a div over the full width slider #914796

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Spacing #914791

    Hi,
    Yes, justify does this to horizontal spacing, although some people like this effect, it is very popular with newspapers and magazines. Unless there is anything else we can assist with, shall we close this then?

    Best regards,
    Mike

    in reply to: Contact Forms not sending. Not in spam or inbox #914682

    Hey mcraig77,
    There are a few different issues that can cause this, first are you using a gmail or yahoo email address to test with to send to a gmail or yahoo address? In this case it will be dropped and not even reach the spam folder.
    Second does your webhost have spam assassin or other spam protection installed? In this case they may require a static sender address and a “reply to” mail header. You will need to ask them if this is true and what they require. Which this code to the end of your functions.php file in Appearance > Editor should solve:

    add_filter( 'avf_form_from', 'enfold_customization_contact_form_etc', 10, 3 );
    function enfold_customization_contact_form_etc( $from, $p1, $p2 ) {
    	global $enfold_custom_from_header;
    	$enfold_custom_from_header = $from;
    }
    add_filter( 'avf_form_mail_header', 'enfold_customization_contact_form_etc2', 10, 3 );
    function enfold_customization_contact_form_etc2( $header, $p1, $p2 ) {
    	global $enfold_custom_from_header;
    	$header .= 'Reply-To: ' . $enfold_custom_from_header . '\r\n';
    	return $header;
    }

    Third, are you using SMTP for your WordPress mail? In this case the “From” value in SMTP is authenticated and only an authorized address is permitted to send through that SMTP gateway. If so this code to the end of your functions.php file should solve:

    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
        $from = " (Email address hidden if logged out) ";
        return $from;
    }

    Please adjust the address in the code.
    I recommend checking the first step first, that is testing without gmail or yahoo addresses. Then ask your webhost if they are using spam protection that you need to know about. Then try using the WP Mail Logging plugin to see if your site is sending the emails and if there are any errors. Also check out this info: http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/
    With this info you will know which of the above functions may help, please don’t use both at the same time.
    If none of this helps, let us know what you learned from your webhost and have the plugin installed & please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Bandcamp Widget Size #914667

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

    Best regards,
    Mike

    in reply to: I can not enter theTheme or change the password #914655

    Hey Tomas,
    When you changed the password in PHPMyAdmin did you type the password in or encode it first?
    Try the password in the Private Content area, the second line is the encoded password that you put in the database.
    If this doesn’t help, please include your cPanel login so we can take a look.

    Best regards,
    Mike

    in reply to: Keeping Templates and Settings #914651

    Hey fulanoinc,
    They are stored in the database, and typically you should not have a issue. But as you have pointed out, this is a very old version. I suggest making a backup first and testing the update on a localhost. If you would like more information about setting up a localhost, please let us know.

    Best regards,
    Mike

    in reply to: Editing Blog Page – Not loading #914648

    Hey kpeffer,
    Typically this could be a issue with a plugin, have you tried deactivating all of your plugins?
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Avia editor won´t load. #914645

    Hey luisfelipealmeida,
    You are getting a “Failed to load resource: the server responded with a status of 500 (Internal Server Error)” /wp-admin/admin-ajax.php
    Please first try deactivating all of your plugins, if that doesn’t help ask your webhost if they see what is causing the server error in the error log.

    Best regards,
    Mike

    in reply to: Transparent Menu ONLY on Specific Page #914635

    Hi,
    I have a question, the page you are linking to: /1240×700/ points to a “page not found” or a 404, is this by design to show us the header? Also I don’t see that your header changes to solid on scroll, as I can still see the content, search box, though the header. Is it looking different for you?
    Please see screenshot in Private Content area.

    Best regards,
    Mike

    Hi,
    I see your webhost has PHP Version: 5.5.22 installed, please ask to have PHP Version: 7 installed.

    Best regards,
    Mike

    Hi,

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

    Best regards,
    Mike

    Hi,
    Strange, I logged into your site and made no changes, and this is what I saw:
    2018-02-19_190631
    So it is odd that you don’t also see this.
    Do you have language settings on your browser?

    Best regards,
    Mike

    in reply to: Mysterious section on pages #914611

    Hi,
    Sorry, as this was a month ago that I looked at the code, I can’t.

    Best regards,
    Mike

    Hey MichaelRau,
    Those options don’t seem right, here is a screenshot that might help:
    2018-02-19_075532
    If this doesn’t help, Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Issue after Cloning WordPress site #914265

    Hi,
    Glad to hear, we will close the now, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Spacing #914263

    Hi,
    Try looking in the General Styling > Quick CSS field, or maybe it is set in your element.
    This is how justify works, please read this for more info

    Best regards,
    Mike

    in reply to: Demo Not Working #914259

    Hi,
    As it seems your localhost is not getting permission to the internet, lets try the All-in-One WP Migration plugin.
    Here is the All-in-One WP Migration files for the 2017 Demo in the Private Content area.
    They are in a zip file that you will need to extract, one is the import, the other is the login info for after the import. Note that you will lose your current settings and content. Install this plugin: all-in-one-wp-migration
    Read this All-in-One WP Migration tutorial
    If you still have issues, I find UwAmp works very good on Windows 10, just run it as admin and grant it the privileges Windows asks about when starting.

    Best regards,
    Mike

    in reply to: Position Title Bar below first element #914252

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

    Best regards,
    Mike

    in reply to: Issue after Cloning WordPress site #914251

    Hi,
    Are you still getting the error, because I’m not seeing the error in the console or the front end.
    Try disabling your plugins, and please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Spacing #914249

    Hi,
    Oh I see :)
    That is because you have it set to “text-align: justify” starting at line 42 of your custom css:

    .team-member-description {
    text-align: justify;
    }

    Try left, right, or centered.
    Justify stretches the lines so that each line has equal width.

    Best regards,
    Mike

    in reply to: Spacing #914239

    Hi,
    Do you mean the menu widget in your footer?
    2018-02-19_063556
    Can you give us an idea how close you would like the menu items to be?
    I see the partner element doesn’t have text, it is images.

    Best regards,
    Mike

    in reply to: Header problems that I can't figure out #914235

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

    Best regards,
    Mike

    in reply to: Having an issue with background image responsiveness #914234

    Hi,
    Glad to hear, shall we close this then?

    Best regards,
    Mike

    Hi,
    This css will change the letter spacing, but you will need to add the menu item to the rule as right now it will effect all of the menu items:

    .avia-menu-text {
    letter-spacing:-2px!important; 
    }

    adjust to suit.
    Question though, was my screenshot showing the correct word & the space highlighted is the correct character?

    Best regards,
    Mike

    in reply to: Manin Menu, submenu transparency? #914226

    Hi,
    I corrected your function.php code to this:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['yelpicon']	 = array( 'font' =>'yelpicon', 'icon' => 'uf1e9');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Yelp'] = 'yelpicon';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    Please notice the font name & the icon code.
    I also corrected your css for the icon background-color:

    #top #wrap_all .av-social-link-yelpicon:hover a{
        color:#fff; 
        background-color:#c41200; 
    }

    I changed yelp to yelpicon

    Best regards,
    Mike

    in reply to: Custom blog layout #914217

    Hi,
    1: The reason they showed the same posts was because the “offset” was deactivated. I set it to “automatic offset”.
    2018-02-19_051301
    2: I believe you are talking about translating this section:
    2018-02-19_051842
    Please try the Say What plugin
    it allows you to change text that is not in the language files.
    2018-01-17_053252
    notice that the “text domain” in the settings is “avia_framework”

    Best regards,
    Mike

    in reply to: updating Enflold #913987

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

    Best regards,
    Mike

    in reply to: updating Enflold #913973

    Hi,
    Ok, that worked.
    I updated your theme, and it looks good, but you should check thoroughly.
    I also copied your old theme files, old dynamic enfold.css, and old theme setting export and put them in a zip file in the Private Content area. I’m sure you won’t need them, but just in case :)

    Best regards,
    Mike

Viewing 30 posts - 28,861 through 28,890 (of 34,558 total)