Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1463792

    Hello,

    I just purchased the Enfold theme because of the high reviews, but I’m starting to doubt my skills. I have a few customization requests for my website that I’m hoping you can assist with:

    – Display Category/Archive Pages with a Specific Blog Layout:
    I would like the category and archive pages to feature a blog layout with two columns. Each post should display a fixed boxed featured image and the title ONLY for the desktop view. Additionally, I need this layout to be responsive and adjustable for various screen sizes. For the mobile/tablet view, it can be just the normal one column + featured image + title (no excerpts and other metadata).

    – Post Slider Element Adjustment
    I am using the Post Slider element in the Advanced Editor for my About page. I need this element to display images in a square aspect ratio, rather than taking the size of the featured image.

    – Fix LayerSlider7 Embeds
    On the homepage, the LayerSlider7 embeds appear to have unwanted padding when viewed on tablets. Can this padding be removed or adjusted?

    – Google Ads Overlap Issue
    My Google Ads banners are overlapping with my paragraphs. I need assistance in fixing this so the ads are properly aligned and do not interfere with the content.

    – Responsive Design for Enfold Theme Elements
    I would like all elements of the Enfold theme on my current website to be fully responsive and adjust smoothly to different screen sizes. It looks like every time I do additional CSS code, it only looks good on one device (usually the home page).

    Thank you for your assistance!

    #1463913

    Hey ampersart,

    Thank you for the inquiry.

    1.) To display a grid layout on the category or archive pages, set the Enfold > Blog Layout > Blog Layout settings to Grid Layout. By default, this setting displays 3 columns, but you can add the following filter to the functions.php file to reduce it to 2 columns.

    add_filter("avf_post_slider_args", function($atts, $context) {
        if ($context == "archive") {
            $atts['type'] = 'grid'; 
            $atts['columns'] = 2;
        }
        return $atts;
    }, 10, 2);
    

    2.) You can set the Styling > Appearance > Preview Image Size settings to the second option to choose a different thumbnail size.

    3.) The site is currently in maintenance mode, so we are unable to check the LayerSlider.

    4.)The theme should be responsive by default. Just make sure that the Enfold > General Layout > Dimensions > Responsive Layout option is enabled.

    In the future, we recommend opening a separate thread for each question or request, rather than grouping all questions in a single thread. This approach will make it easier for us to manage and will allow us to provide more immediate responses.

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.