Forum Replies Created

Viewing 30 posts - 11,071 through 11,100 (of 35,061 total)
  • Author
    Posts
  • in reply to: Can't bring elements closer together for some reason #1362363

    Hey Dzimnikov,
    Thanks for your question, so I’m not sure how close you want them, but the .template-page.content has a padding-bottom: 50px and #packageitems .template-page.content has a padding-top: 50px
    So this css should help:

    #top.page-id-467 .template-page.content {
    	padding-bottom: 0;
    }
    #top.page-id-467 #packageitems .template-page.content {
    	padding-top: 0;
    }

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

    Best regards,
    Mike

    in reply to: Moving featured image to below the fold #1362361

    Hi,
    Thanks for the feedback, and I’m certain we can help you with this using javascript, but consisting that we are looking to modify 800+ pages a little more feedback about your post structure would help.
    So looking at /limoncello-cocktail/ I see that you have “jump to recipe” and “print recipe” buttons ▸ wprm-recipe-template-snippet-basic-buttons
    but I assume that this is not far enough down.
    I also see a Table of Contents ▸ ez-toc-container perhaps after this is ok?
    Or perhaps the first H2 after the Table of Contents?
    Please check your posts and hopefully there is a standard placement that we can use.

    Best regards,
    Mike

    in reply to: How to have a link open in a new window? #1362355

    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: How to have a link open in a new window? #1362353

    Hi,
    I assume that you are using an image widget in your column 3 footer widget:
    2022-08-21_008.jpg
    after you have added the image widget and saved the URL, go back and click the “edit image” button and you will see the “Open link in a new tab” check box:
    2022-08-21_009.jpg
    select this and save again and now the link will open in a new tab.
    2022-08-21_010.jpg

    Best regards,
    Mike

    in reply to: [Question] Masonry sorting does not show all categories #1362351

    Hey ScenesBySevy,
    Thanks for your question, when the number of items are limited the sort option will only show from the items currently shown.
    Perhaps give this a try, in your masonry element select Display all entries and Pagination ▸ Post Number ▸ All with sorting enabled.
    Then add this css to your Quick CSS:

    #av-masonry-1 .av-masonry-container:not([id*="masonry_id_"]) .av-masonry-entry:nth-child(n+6) {
         display: none;
     }

    If you are using a masonry element on multiple pages and want to limit this behavior to one page then add a page ID to the css rule.
    Now on page load only 4 items will show, because all other items are hidden:
    2022-08-21_006.jpg
    but if any sort options are clicked all items for that sort will show, because the above css to hide items will be disabled:
    2022-08-21_007.jpg
    I linked to my example page below, and in my example, I only have 8 items.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I changed the css for the header image to this:

    #top.single-post .container_wrap_first:before {
      content: "";
      background-image: url(https://parkinson-journal.de/wp-content/uploads/2022/05/Headpic.png);
      width: 100%;
      height: 100%;
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
    }
    #top.single-post .container_wrap_first > .template-single-blog > .content {
      margin-top: 12%;
    }

    please clear your browser cache and check.
    On your home page I see the link color matches your chosen color:
    2022-08-21_085520.jpg
    try clearing your browser cache and check again.
    If you want to change the color of the menu items, use the menu options at Enfold Theme Options ▸ Advanced Styling

    Best regards,
    Mike

    in reply to: Product slider Buy Now and Show Options missing #1362341

    Hi,
    Thanks for your feedback, but the product slider doesn’t show the “Buy Now” or “Show Options” buttons, please see our Shop Demo example.
    2022-08-21_001.jpg
    To add a “Buy Now” button to the product slider you can try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    add_action( 'after_setup_theme', function() {
         add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 12 );
    }, 999);

    2022-08-21_002.jpg

    Best regards,
    Mike

    in reply to: Change caption box styling for full width slide show #1362339

    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: Change caption box styling for full width slide show #1362316

    Hi,
    For mobile please try this css:

    @media only screen and (max-width: 767px) { 
    	#top .avia-fullwidth-slider .slideshow_align_caption {
        width: 100%;
    }
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area for the expected results.

    Best regards,
    Mike

    in reply to: Problems after installing demo, background-color missing #1362312

    Hey agenturwendt,
    Thanks for your question and your login, you had this custom css in your child theme stylesheet:

    #top  {
    background-color: transparent !important; }
    

    I changed it to:

    #top  {
    background-color: #fff !important; }

    Now the blog background is white instead of transparent.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Product slider Buy Now and Show Options missing #1362305

    Hi,
    Thank you for your patience, yet I’m not sure where you are having this issue, please link directly to the page and perhaps a screenshot would help.

    Best regards,
    Mike

    in reply to: sticky Sidebar Content Menu #1362304

    Hi,
    Thanks for your help Guenni007

    Best regards,
    Mike

    in reply to: Hover menu #1362302

    Hey tcampaner,
    Thanks for the link to your example page, I see this behavior only occurs “after” the page is scrolled, and it has a sticky header.
    Yet your page doesn’t have a sticky header as Enfold Theme Options ▸ Header ▸ Header Behavior ▸ Sticky Header would provide.
    So assuming that you only want this “before” scroll, we will hide the menu on page load and then only show it on logo hover.
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #header_main_alternate {
    	display: none;
    }
    #top #header_main:hover #header_main_alternate {
    	display: block;
    }

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

    Best regards,
    Mike

    in reply to: WooCommerce product images not displaying correctly #1362299

    Hi,
    Glad to hear that this has been 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

    in reply to: Loop text in Layerslider 7 and form #1362297

    Hi,
    Thanks for your patience, but the login doesn’t seem to be working, please check.

    Best regards,
    Mike

    Hi,
    I see that you moved the header to the sidebar, so this will change the solution, but the login you provided before doesn’t work now, please update.

    Best regards,
    Mike

    in reply to: Masonry categories as sticky menü #1362294

    Hi,
    Thanks for your patience, to show the scroll-up button for mobile please try adding the css to your Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive #top #scroll-top-link {
        display: block;
    }
    }

    For the /backhandwerk/ page, your question was scrolling to the top after clicking a category, but when I check you need to be at the top to click on a category.
    So I’m not seeing where there a need here.
    Please try explaining further, perhaps a screenshot would help.

    Best regards,
    Mike

    in reply to: error message #1362290

    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: Form field description not close to form field #1362235

    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: Importing Custom Font Not Working Correctly #1362234

    Hi,
    Guenni007, thanks for your input, the font-weight was automatically generated by the .ttf files, there are no .woff and .woff2 files for this font, which was downloaded from an unknown source and created by an unknown author.
    Typically you would be correct, but in this case the files didn’t seem normal so this was a workaround.

    Best regards,
    Mike

    in reply to: Form field description not close to form field #1362226

    Hi,
    Glad to hear, I assume that you want the description to be even closer to the field, so the description text is 12px so we will use a line height of 12px with this css:

    #top .frm_fields_container .frm_description {
    	line-height: 12px;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area for the expected results.

    Best regards,
    Mike

    in reply to: timeline "scrollamount" #1362171

    Hey DUALWERK,
    Thanks for your question when the timeline is in horizontal scrolling mode it uses the \enfold\config-templatebuilder\avia-shortcodes\slideshow\slideshow.js on line 786 you will see a line that is commented out:
    2022-08-19_003.jpg
    un-comment this line and comment out the line under it:
    2022-08-19_004.jpg
    This will make to scroll all of the showing milestones, such as 3 at a time. I have linked to my test page below which has 9 milestones with 3 showing at a time.
    After you edit the slideshow.js you will need to clear the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression by disabling it and then enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and clear your browser cache.
    I’m not sure if this will change other slider behaviors so you should check, if you want to add this modification to your child theme, ensure this function is in your child theme functions.php file:

    function avia_include_shortcode_template( $paths )
    {
    	if( ! is_array( $paths ) )
    	{
    		$paths = array();
    	}
    	
    	$template_url = get_stylesheet_directory();
    	array_unshift( $paths, $template_url . '/shortcodes/' );
    
    	return $paths;
    }
    add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );

    then add the directory /shortcodes/ to your child theme and then copy the directory /slideshow/ with your customized file to the /shortcodes/ directory.
    Then clear the file merging and compression and your browser cache.

    Best regards,
    Mike

    in reply to: Importing Custom Font Not Working Correctly #1362168

    Hi,
    Thank you for your patience and the link to your font file, each font file should be uploaded as a zip file individually, the variants for this font seem a little odd as each one only has one font-weight and when they are all uploaded together they are all combined in the Custom Font Manager, I assume that the headers in the font files themselves are not quite correct. But I tested uploading them individually and this worked correctly, below I linked to a DropBox folder with all of the zip files I tested:
    2022-08-19_001.jpg
    2022-08-19_002.jpg

    Best regards,
    Mike

    in reply to: text in popup #1362141

    Hi,
    Thanks for your feedback, let’s wait for Guenni007’s insight on this.

    Best regards,
    Mike

    Hi,
    Ok I added the line back for a scrolled page, and I added a menu break point for 1230px.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: text in popup #1362126

    Hi,
    The magnificPopup (lightbox) is used by many elements, it is the theme’s default lightbox. I would recommend at least wrapping your code in a media query for mobile only, like you did to unfloat the images above. On Guenni007’s test page above he has added the class “people”, which if you have the same you could add to your css to target this element, like this:

    @media only screen and (max-width: 479px) {
    .mfp-wrap.people .mfp-arrow-left {
        left: -7px;
    }
    .mfp-wrap.people .mfp-arrow-right {
        right: -7px;
    }
    }

    I don’t see a link to your page to check and I don’t see this class added in Guenni007’s solution above so I’m not sure, but you could add a custom class in Guenni007’s solution above if you need to.

    Best regards,
    Mike

    Hi,
    I believe that your Token doesn’t have the specific permissions enabled to update
    You seem to only have these enabled:
    your purchases
    Your username
    Your email

    please see the link to our documentation to see all of the permissions required.

    If you continue to have issues try downloading the latest 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 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

    Hi,
    I added this css, and it now seems correct:

    #top.single-tribe_events #main h2.tribe-events-single-section-title {
    	font-weight: 700;
    }
    @media only screen and (min-width: 989px){
    #top.tribe-theme-enfold.single-tribe_events #main .tribe-events-meta-group {
        margin-right: 3%;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, for the border I added this css:

    #top.single-tribe_events #header_main,
    #top.single-tribe_events #header_main.container_wrap {
        border: none;
    }

    for the background image I adjusted your custom css to this:

    .single-tribe_events div#main > .container_wrap:first-child {
        background-image: url(//your-image.jpg);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-attachment: fixed;
    }
    

    please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 11,071 through 11,100 (of 35,061 total)