Forum Replies Created

Viewing 30 posts - 8,851 through 8,880 (of 35,204 total)
  • Author
    Posts
  • Hi,
    When I check on mobile (425px) in landscape mode the image and text are lined up, please see the screenshot in the Private Content area.
    Perhaps try clearing your mobile cache, iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    I also notice the column still has the error for invalid class name, please check that you have removed the css for the “custom class” field.
    If you have trouble with this please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Widget title colors #1400673

    Hi,
    Try this css:

    #main .sidebar_right .sidebar .inner_sidebar {
        margin-left: 0;
    }
    #top #wrap_all #main .sidebar_right .sidebar {
        border-left-style: none;
    }
    #top .sidebar_right .template-page.content {
    	border-right-style: none;
    }
    #ihomefinderloginwidget-2 #ihf-main-container .col-xs-12.col-sm-2 {
     	padding-left: 0;
        padding-right: 0;
    }
     #ihomefinderloginwidget-2 #ihf-main-container .col-xs-12.col-sm-10 {
        padding-left: 20px;
        padding-right: 0;
        width: 76%;
    }

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

    Best regards,
    Mike

    in reply to: pages not appearing in the menue #1400670

    Hi,
    You do have a page Haftungsausschluss or Terms created yet, so you will need to create one.
    You do have a page IMPRESSUM and Privacy Policy, which is in draft, so you could modify and use one of these.
    If you go to WordPress ▸ Settings ▸ Privacy ▸ Select a Privacy Policy page you can choose which page to use.
    Enfold_Support_585.jpeg

    Best regards,
    Mike

    in reply to: Change Layout and design of Category pages #1400587

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Widget title colors #1400585

    Hi,
    I didn’t know the plugin Widget Options – Extended had this option.
    This css that you posted above is wrong:

    #top. widget h4.class=”widgettitle {
    background-color: #008000;
    color: #eff8ee; !important;
    }

    this is it corrected, I fixed it for you:

    #top #main .sidebar .widget h4.widgettitle {
        background-color: #008000;
        color: #eff8ee !important;
    }

    as for your sidebar, do you mean the background color or the margin?

    Best regards,
    Mike

    in reply to: Backend issues #1400583

    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: pages not appearing in the menue #1400581

    Hi,
    In your footer page if you want to change the text or links in the text element which contain About | Imprint | Contact | Terms
    you would do so manually in that text element.
    I’m not sure what you mean by: And where do I fill these bullet points with content?
    Since you are going to manually change the text in the links to: Über I Impressum I Kontakt I Haftungsausschluss on the footer page, I imagine that you are asking to change the content of these pages, you would do so by manually editing the pages.
    I hope this answers your question.

    Best regards,
    Mike

    in reply to: Widget title colors #1400560

    Hi,
    I believe that your plugin Widget Options – Extended is overriding the widget style:
    Enfold_Support_583.jpeg
    Try disabling the custom style in the widget or try disabling the plugin, Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Bottom margin of masonry elements with large gap #1400550

    Hi,
    Glad to help

    Best regards,
    Mike

    in reply to: pages not appearing in the menue #1400548

    Hi,
    To add a link to your footer page from the main menu, please add a custom link with the URL #footer-template
    Enfold_Support_580.jpeg
    I did this for you, please check and adjust to suit.

    Best regards,
    Mike

    in reply to: I cannot reach my Website #1400546

    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: pages not appearing in the menue #1400510

    Hi,
    To use a footer page instead of the default footer and widgets please select your footer page at Enfold Theme Options ▸ Footer ▸ Default Footer & Socket Settings ▸ Select a page to replace footer and keep socket
    To add a footer menu please select one at WordPress ▸ Menus ▸ Manage Locations ▸ Footer Menu

    Best regards,
    Mike

    in reply to: Submenu sticks on mobile #1400509

    Hi,
    Thanks for your patience and the link to your site, I have not seen this error before, but I see an empty avia-style.min.css in your child theme directory please remove this via FTP and clear your browser cache and cache plugin and check again.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, I see an error on your site now and based on your last comment I believe that you added the css I posted above to the custom class field, please remove this and add the css to: Enfold Theme Options ▸ General Styling ▸ Quick CSS field, then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Font Issues #1400505

    Hi,
    I looked at your advanced styling for the H5 element and while you had left the font-weight set to “default” on the front end it was 600, or semi bold
    I’m not sure why, but setting font-weight set to “400” corrects:
    Enfold_Support_578.jpeg
    please clear your browser cache and check, and apply to other headings as needed.

    Best regards,
    Mike

    in reply to: Backend issues #1400480

    Hi,
    Thanks for the feedback, I see your site was giving this error:
    jQuery.Deferred exception: Cannot read properties of undefined (reading 'setDefaults') TypeError: Cannot read properties of undefined (reading 'setDefaults')
    for this code:

    function my_datepicker_defaults() {
    ?>
     <script type="text/javascript">
    	jQuery(document).ready(function(){ 
    		jQuery.datepicker.setDefaults({
    		minDate: 0,
    		maxDate: "+12m"
           		});
      	});   
     </script>
    <?php
    }
    add_action('wp_footer', 'my_datepicker_defaults', 20);

    I adjusted to this:

    function my_datepicker_defaults() {
    ?>
     <script type="text/javascript">
    	window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    		jQuery.datepicker.setDefaults({
    		minDate: 0,
    		maxDate: "+12m"
           		});
      	}(jQuery)); 
    });   
     </script>
    <?php
    }
    add_action('wp_footer', 'my_datepicker_defaults', 20);

    and now your menu opens, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hide embedded form page from home page menu #1400472

    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: subheading added to magazine #1400464

    Hi,
    Guenni007 in the child theme since about v5 the Dev Team has referred to it in the PHPDoc headers of the functions.php file:

     * @param array $paths
     * @return array

    I’m referring to the child theme in the full enfold with docs zip, I linked to it above, you don’t need to add it to your child theme and it’s not necessary, I refer to it above to keep the answer consistent with the files that I linked to.

    Best regards,
    Mike

    in reply to: Tabs section showing wrong tab on the front end #1400387

    Hi,
    Glad Yigit 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: Hide embedded form page from home page menu #1400386

    Hi,
    Thanks for your patience and the link to your site, I found that all of your menu items were under the “Home” menu item and to the right, so all would only show when you hover over the “Home” item, I moved them all to the left so all items will show in your header.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: IP Address for Updates / Importing Theme Data #1400382

    Hey rebekahnola,
    Thanks for your question but all updates are served from our licensor Envato, we don’t have their IP’s listed so please contact Envato Support for this information.

    Best regards,
    Mike

    Hi,
    Guenni007 has posted a solution to make the fullwidth submenu sticky on mobile please check.
    Otherwise, you could use the widget element to display a navigation widget in the page and choose a specifically created menu for that page.
    I see that on your example page the sidebar menu is below the content on mobile, it only shows next to the content for tablet and above.
    Also, I don’t think it is loading pages I think it is a tab container with the tabs to the side instead of above, try the tab section element with the Tab Position to the left in the options.

    Best regards,
    Mike

    Hi,
    Try adding this css:

    @media only screen and (min-width: 768px) and (max-width: 989px)  { 
      .responsive #top.home #av_section_6 .av_one_fourth.first + .av_one_fourth.flex_column_div.avia-builder-el-54 {
      	    margin-left: 0;
      }
    }

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

    Best regards,
    Mike

    in reply to: Theme update #1400349

    Hey tleipone,
    Thanks for your question Envato doesn’t use the API anymore, for a couple of years they have used the Token, but you can’t use the Token in your version to update you will need to manually update first then create a token within your Envato account.
    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

    in reply to: Install “Tiktok” #1400348

    Hey Martin,
    Please see this tutorial

    Best regards,
    Mike

    in reply to: How to hide Headers and Footers? #1400347

    Hi,
    *Update* For desktop and mobile on blank pages I added this css:

    .responsive #top.avia-blank #wrap_all #main  {
      padding-top: 0 !important;
    }
    
    #top.avia-blank #main  main.template-page.content {
      padding: 0 !important;
    }

    I then changed the template for that page to blank, it was set to default.
    I then added the css for you and cleared your cache plugin, please clear your browser cache and check.
    Please note that iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Submenu sticks on mobile #1400344

    Hi,
    Guenni007 thank you for sharing your solution to make the fullwidth submenu sticky on mobile, I’m sure many will find this helpful.
    But the issue jaimemerz has is that the fullwidth submenu is sticky on mobile that he doesn’t want, it looks like some custom javascript adding position: fixed; on scroll, but we can’t tell until we can login and evaluate.
    jaimemerz please check the login.

    Best regards,
    Mike

    in reply to: Initialise slider #1400343

    Hi,
    Glad to hear that you have this sorted out and thanks for sharing your solution, 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: I cannot reach my Website #1400342

    Hi,
    You could try this plugin: Redirect 404 to Homepage, but I would not do it because it may be confusing if a visitor is expecting a certain page and lands on the homepage without knowing the page doesn’t exist anymore.
    Perhaps try using the same setting above but to a custom 404 page that says the page doesn’t exist anymore with some page suggestions and a recommendation to the homepage, this is what the setting is meant for.

    Best regards,
    Mike

    in reply to: Can Not Edit a Specific Page #1400341

    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

Viewing 30 posts - 8,851 through 8,880 (of 35,204 total)