Forum Replies Created

Viewing 30 posts - 1,891 through 1,920 (of 33,339 total)
  • Author
    Posts
  • in reply to: X icon (former icon) #1439107

    Hi,
    Thanks for the login, I see you are using v4.6.3.1, the latest version is v5.6.12
    Enfold_Support_5256.jpeg
    Enfold_Support_5258.jpeg
    If you have trouble updating by downloading the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Update #1439106

    Hey Hans Löwer,
    Thanks for your question, your theme version is very old, unfortunately a while back Envato (Theme Forest) changed how updates are done and you will need get the latest version from your Envato account and manually update, then after you update you can create a Envato Token in your Theme Forest account so that future updates can be done easily, but your current version will not work with the Envato Token.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Try changing your css to this:

    #top .layout-wholebox:hover .layout-image {
        filter: grayscale(100%);
        transition: all 0.4s ease-in-out;
    }

    Best regards,
    Mike

    in reply to: Accessibility #1439101

    Hi,
    Please see the element option in the Advanced tab Heading Tag
    Enfold_Support_5254.jpeg

    Best regards,
    Mike

    in reply to: Categories #1439029

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Different Burger Icon size on desktop and mobile #1439028

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Masonry not displaying cover pictures #1439027

    Hey SimonePols,
    Did you add featured images to each portfolio item? If you did perhaps a plugin is preventing them from being included, try disabling all of your plugins and then reload the page. If that resolves the issue, reactivate each one individually and reload the page until you find the conflict. Otherwise include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: WooCommerce and blocks #1439026

    Hey StephenStamp,
    Thank you for your patience but the Enfold Advanced Layout Builder is not compatible with “blocks” and you can not enable the Block Editor on product pages.
    It is not recommended to manually edit the Shop page with the Advanced Layout Builder, but it is possible, see our documentation here and then you could add a product slider element to use for your featured products.

    Best regards,
    Mike

    in reply to: Gap between the lines in the mobile view #1439022

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Need to add script to and #1439021

    Hi,
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg
    then add the code and save.

    Best regards,
    Mike

    Hi,
    It would be easier to help you if you had a test page that we could see, but as I look at your css above the code for the image background has too many places, most browsers only support six places in a color code, and you are adding a background to an image on hover which you will not see, because it is behind the image.
    Try using a grayscale filter on the image like this:

    #top .layout-wholebox:hover .layout-image {
    transition: opacity 0.4s ease-in-out !important;
    filter: grayscale(100%);
    }

    Here is an example of some other filters that you can use.

    Best regards,
    Mike

    in reply to: Share buttons #1438989

    Hey aaronjosephhall1,
    We could move them will javascript, please link to your page and include a screenshot of where you want them to be, that is between which post elements.

    Best regards,
    Mike

    in reply to: only on this page #1438986

    Hi,
    To change the color of the widget title for both pages try this css:

    #top #wrap_all .all_colors .widgettitle,
    #top #custom_html-2 > h3.widgettitle {
    	  color: #000000;
        text-transform: none;
        font-size: 23px;
        font-weight: 200;
    }

    to show the footer on tablet you need to change the css to show for tablet, we will say it is 768px, so use this:

    @media only screen and (min-width: 768px) {
    #top:not(.page-id-3288,.page-id-3593) #footer {
    display: none;
    }
    }
    @media only screen and (max-width: 767px) {
    #top #footer {
    display: none;
    }
    }

    some tablets are different sizes like 1024px & 1366px, but 768px should cover all of them.

    Best regards,
    Mike

    in reply to: Menu gone #1438941

    Hi,
    It sounds like you have sorted this out, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Need to add script to and #1438940

    Hey schwabino,
    I would wrap your code in this and add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    
    //your code here
    
      </script>
      <?php
    }
    add_action( 'wp_head', 'custom_script', 99 );

    Best regards,
    Mike

    in reply to: Different Footer on different pages #1438939

    Hi,
    Perhaps there is a way around this, but I don’t know how you are using dynamic_sidebar( 'Footer - Column 1' ); to display a specific widget on a specific page, but it seems like re-inventing the wheel when there is a plugin that will add this option to your widgets already.
    I would imagine that you would use an IF statement to check the page ID and your “else” would be empty or a different widget for when the IF statement was not true, so in this case you don’t need to “remove” the widget, it just would not show in the first place, that is the approach that makes the most sense.

    Best regards,
    Mike

    in reply to: only on this page #1438937

    Hi,
    Thanks for the login, you go to the widget and the use “Show on checked page” then start typing the name of the page and it will auto fill the name of the page:
    Enfold_Support_5250.jpeg
    I did this for you so you can see.

    Best regards,
    Mike

    in reply to: Button position on sliders #1438934

    Hi,
    When I check your page on desktop the css I posted above is not applied, and this is what makes the button larger and center, so I don’t know if you have an error in your css, or if you didn’t add it because you didn’t understand, but this is the desktop part of the css that you should ensure to use:

    @media only screen and (min-width: 768px) { 
    #top .caption_bottom .slideshow_caption .slideshow_inner_caption {
        position: relative;
        text-align: center;
    }
    #top .slideshow_inner_caption .avia-slideshow-button.avia-button {
        width: 300px;
        height: 100px;
        font-size: 24px;
    }
    .html_header_transparency #top #main .caption_bottom .slideshow_caption {
        padding-top: 0;
    }
    }

    this is the result:
    Enfold_Support_5246.jpeg
    I now assume that you now wanted the button to move up a little, so you would then add this css:

    @media only screen and (min-width: 768px) { 
    .slideshow_inner_caption {
    	top: -100px;
    }
    }

    for this result:
    Enfold_Support_5248.jpeg
    feel free to adjust to suit.

    Best regards,
    Mike

    in reply to: Installing parallax page #1438929

    Hi,

    Your error message is for a plugin called full-site-editing
    Try disabling it.

    Best regards,
    Mike

    in reply to: only on this page #1438921

    Hi,
    You don’t want to try the plugin? I’m recommending this so you will be able to easily make changes in the future.

    Best regards,
    Mike

    Hi,
    The above css changes the color of the burger icon to red, please adjust to the color you wish:
    Enfold_Support_5244.jpeg

    Best regards,
    Mike

    in reply to: Button position on sliders #1438919

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 450px) { 
    .slideshow_inner_caption {
    	top: -30px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change words color when hover #1438916

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Header on desktop and mobile #1438889

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: only on this page #1438887

    Hi,
    This css was to be used with the plugin Widget Options that I recommended above, to show each widget only on specific pages.
    This will really make it easy for you as you add more widgets for more pages, or if you change the widgets in the future.
    And originally you had the widget in a single column that was full width, place both widgets in the same column so they will be centered, right now you have two half columns which will not center.

    Best regards,
    Mike

    Hey northorie,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #hello .avia_textblock img {
    	width: 50%;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results for mobile.

    Best regards,
    Mike

    in reply to: Header on desktop and mobile #1438863

    Hey dreamreader,
    Your desktop header is using the option in the admin sidebar for Header visibility and transparencyHeader is invisible and appears once the users scrolls down this option doesn’t work for mobile.
    You could try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	#header.av_header_transparency {
    		display: none;
    	}
    	#top #wrap_all #header.av_header_transparency ~ #main {
    		padding-top: 0 !important;
    	}
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add a header widget area #1438862

    Hi,
    Your header is transparent the gray that you see is from the top color section on the page:
    Enfold_Support_5238.jpeg
    when the header is scrolled the #897270 color is from your Logo Area Color:
    Enfold_Support_5236.jpeg
    if you don’t want a transparent header change the setting on the page in the backend in the admin sidebar:
    Enfold_Support_5240.jpeg
    As for the header widget, I disabled the above css and added this:

    @media only screen and (min-width: 990px) and (max-width: 1670px) { 
    	#header_main .inner-container .widget .textwidget {
      	 margin-left: -196%;
      }
    }
    @media only screen and (min-width: 990px) and (max-width: 1440px) { 
      #header_main .inner-container .widget .textwidget p span {
      	 font-size: 14px !important;
      }
    }
    @media only screen and (min-width: 1441px) and (max-width: 1670px) { 
      #header_main .inner-container .widget .textwidget p span {
      	 font-size: 18px !important;
      }
    }
      #header_main .inner-container {
      display: flex; 
      flex-wrap: wrap; 
      justify-content: center;
      align-content: center;
      }
      #header_main .inner-container .widget {
      	padding: 0;
      }
      #header_main .inner-container .widget .textwidget {
        align-content: center;
        height: 100%;
      }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Skype Social Icon #1438860

    Hey Simijonovic,
    the Skype protocol is not whitelisted in WordPress, and URL beginning by skype is stripped by WordPress, try the plugin Allow Skype Protocol

    Best regards,
    Mike

Viewing 30 posts - 1,891 through 1,920 (of 33,339 total)