Footer gets in the way of gallery div

As a coding novice, I recently downloaded the Galereya JQuery script to use on my website. While it works well, I encountered an issue where it overlaps with other content on the page. Despite trying to adjust the overflow and position properties, I have been unable to resolve this problem. Placing the gallery code within another div resulted in the grid functionality failing. Setting a fixed height in pixels could be a temporary solution, but it poses challenges for pages of varying heights and mobile responsiveness.

The overlap issue only arises when inserting the gallery code; adding other content does not cause overlapping.

Below are the snippets of code I am working with:

        $(function() {
            $('#galleryherepls').galereya();
        });

I have spent countless hours trying to solve this problem and desperately need assistance from the community.

Footer:

#footer { margin: auto; margin-bottom:10px;  color: #fff; background: #323232; width: 980px; height: 20px; padding:10px; clear:both; text-align: center;}

Answer №1

There seems to be a bug in the version 0.0.93 that you're currently using, but it should be fixed in version 0.9.94.

You can download the updated version from their github page since their plugin website is still offering the outdated version.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Tips for populating two select tags with jQuery AJAX using a JSON document

Looking for help with my HTML code that includes two select tags. I want to use AJAX to populate the 'collegeselect' based on the selection in the 'departmentselect'. HTML CODE titled 'collegedepartment.html' <html> ...

Could the absence of a tree view in the div be due to an error in the positioning of the DOM

I'm currently working on displaying a tree structure with specific child elements inside a div using JavaScript and HTML. Despite creating all the necessary objects and ensuring that the data is correctly read from the JSON file (refer to the "data" i ...

Handling Posts and Gets with Jquery/Javascript

Working on a web application that involves generating numerous post and get requests. I am able to monitor all the requests using Developer Tools in Mozilla/Chrome, as well as with Charles (an app). Is it feasible to develop a jQuery or JavaScript functi ...

What is the best method to activate a button only when the appropriate radio buttons have been chosen?

Just dipping my toes into the world of javascript. I've created a form with a set of "Yes/No" radio buttons, and I attempted to create a function that will disable the "Submit Form" button if any of the following conditions are met: If one or more r ...

Issue: The function _lib_getAllUsers__WEBPACK_IMPORTED_MODULE_2___default(...) is not recognized as a valid function

I'm currently following the YouTube series on Next.js by Dave Gray. My goal is to import a function from the file "lib/getAllUsers" https://i.sstatic.net/1SQMg.png However, I'm encountering the following error: Unhandled Runtime Error Error: ...

The coordinates of the event do not match the coordinates of the location. Successful AJAX response data

How can I retrieve the accurate latitude and longitude when the Google Maps marker finishes dragging? It's confusing because for the same exact point, two different (but very approximate) coordinates are provided. Here are some example results for t ...

Passing parameters in a jQuery function through a button click

I am trying to figure out how to pass the @item.Id value as a parameter in the click function for a button. Here is the code snippet: <button id="buttonEdit" style="color:darkgreen" data-toggle="modal" data-target="#Ed ...

The customized styling for Material Angular does not seem to properly apply to <md-card> elements within ui-views

I am trying to achieve a specific effect on the ui-views <md-card id="sidebar" flex="20" class="sche-card" layout-padding="true"> <div ui-view="card" autoscroll="false"></div> </md-card> However, I am facing an issue where the car ...

Gif stubbornly refusing to fade out even after the .fadeOut command is called

Having trouble making a gif fade out after the page loads? Here's my attempt so far: I want the overlay, which includes a white background and the gif, to gradually become transparent once the rest of the page is fully loaded. Take a look at the fol ...

Javascript - SecurityError: The action is not secure

Having this particular HTML element below: <a class="btn-modal" data-modal-window-id="category-add-modal" href="#" data-mode="edit" data-content="{&quot;category_id&quot;:16,&quot;category_name_en&quot;:&quot;Food&quot;,&quo ...

The issue of setTimeout malfunctioning when used in conjunction with ajaxStart

I am looking to optimize the appearance of my loading animation during an ajax request by delaying it and ensuring it only shows if the request lasts longer than a second. However, I am facing an issue where even though the delay is set at more than 80 i ...

CSS selector for targeting a parent element followed by a sibling element

Can someone help me with the following HTML and CSS issue? <form class="Form"> <FormField> <label class="FormLabel" ..> <div class="FormInput"> <div class="InputField"> <input../> </di ...

Animation fails to operate on the second ajax request

On my main page and subpage, I have an ajax call that displays the subpage. Everything works fine with the animation when loading the subpage by clicking on the menu: $(document).ready(function(){ $(".transactions").on("click", function (event) { ev ...

Overcoming Ngx-Bootstrap's Inline Datepicker Issue

I would appreciate some suggestions or workarounds. I am experiencing an issue with the user experience of the ngx-bootstrap inline datepicker. When a user selects a date range on the same day, they may only click once. However, the problem arises because ...

Flask-generated Bootstrap sidebars remain expanded and do not collapse

For my Flask Web App, I decided to incorporate a Bootstrap 5.0 sidebar by downloading an example from the Bootstrap page that suited my requirements. The standalone HTML/CSS/JS file worked perfectly, with the second level collapsing/expanding automatically ...

Nested Ajax request fails and triggers a full page reload

My goal is to search for product information and images using a product code input on index.php. The query runs in open_first.php via an ajax post request, which works perfectly. open_first.php displays images that can be selected by clicking on them. How ...

Is it possible to apply SlideToggle() to Div elements that have their Display property set to Table-Cell?

I am facing an issue on my web page where I have a series of div elements styled with display: table and their child div elements styled with display: table-cell. I am looking to use slideToggle() on a specific cell to change its content. However, I have c ...

Challenges with inserting a new line in a textarea are posing

Hello everyone, I'm facing an issue with my textarea. It seems that even though I can input a new line in it all day long, when I submit the box, the text appears as one continuous sentence. Any suggestions on how to fix this? <tr id="commentRow"& ...

What is the best way to connect objects that have been separated?

Looking for a way to reattach my detached objects and wondering how to replace the function that currently only triggers an alert. Any suggestions or help is appreciated. http://jsfiddle.net/jy2Zj/ In addition, I have another question - is there a method ...

The expanding Bootstrap Footer is overlapping the content on the page, causing it to be hidden

I have implemented a bootstrap footer with position:absolute to ensure it remains at the bottom of my single-page website at all times. The issue arises when I resize the screen width and reach around 980px, the footer height increases, obstructing most o ...