Is it true that in IE7 and IE8 standards mode, "320 and up" reverts back to

I am currently navigating the 320 and up template for the first time, testing a website shell on ie9 while using developer tools to check compatibility with ie8 & 7 in standards mode.

This site incorporates boilerplate html5 and wordpress. Despite my thorough examination and testing, it seems that everything should function properly across all browsers... but unfortunately, it does not.

You can view the test site here:

If you notice any errors that have escaped my tired eyes, please bring them to my attention. I've been analyzing this for two days now!

UPDATE: To further clarify, when I say it doesn't work, I mean the site remains fixed at the 320 width format and does not scale up in the browser. The best way to test this is by resizing the browser window. In the provided link, everything works well in all browsers except ie7 & 8 in standards mode.

Answer №1

It seems that 320 And Up has been created to utilize responsive media queries in its CSS, which unfortunately do not function in Internet Explorer 8 and earlier versions. To make these media queries work in stubborn browsers like IE8, there is a provided script called respond.min.js. However, it appears that you have forgotten to include this script, which could be the reason for the issue you are experiencing.

Take a look at the bottom of the sample pages included with 320 And Up; you will notice the presence of the script specifically targeted for the outdated versions of IE. Additionally, DOMAssistantCompressed and selectivizr are also integrated; it is likely that you will need all of these tools to ensure compatibility with IE8 and below when using 320 And Up.

Answer №2

Shoutout to @Matt for the valuable feedback. Despite adding respond.js, the issue persisted! I devoted a significant amount of time attempting to resolve this...

...dilemma.

After grabbing the most recent respond.js from github, everything fell into place effortlessly! Should have considered that solution sooner!

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

Include a return or delete from the default IO statement

I am utilizing an intersection observer that alters the header's font-color and background-color based on the content intersecting with it. This change is determined by the presence of data-color and data-background attributes declared on the div/sect ...

HTML form submitting with a symbol illustration

I am currently facing an issue with my website. I would like to create a search button using the symbol from fontawesome (<i class="fas fa-search"></i>), but I am unsure how to replace the form submission button with this symbol in order to sub ...

flexible side-by-side alignment - adaptable grids

I am currently working on a website project that involves a ul list with responsive columns. The column width adjusts based on the window size, and I aim to center-align the text within the li element according to the new column width. If you want to view ...

Counting Characters in a Text Area and Adding Tabs Using JavaScript

As users visit my website to update their profile bio, a character counter written in JavaScript displays the number of characters remaining. When they create a new bio or make changes to their existing one, their current bio is fetched from the database ...

What could be causing my col-8 to not align perfectly in the center of the grid system?

Recently, I've been delving into tutorials on how to utilize bootstrap4 and have been experimenting with the grid system. However, I've encountered an issue where my layout is not aligned in the center as intended. Here's a snippet of my cod ...

When using Angular, automatically shift focus to the next input field by pressing the

I am faced with a challenge involving multiple editable inputs on my screen. Alongside these editable inputs, there are buttons and disabled inputs present. The current behavior is such that when I press Tab, the focus shifts to the HTML elements between ...

Adaptive design that uses identical HTML for both desktop and mobile versions

I'm currently working on a project using Bootstrap 4 to create a responsive design, but I'm facing some challenges. I managed to achieve the desired layout on CodePen, but I'm struggling to find a way to avoid repeating the code for both de ...

Title of HTML Page: The Importance of Localization in Website Development

Two inquiries regarding an improved method of problem-solving: 1) Is there a way to alter the HTML page title for different client-side code locales without relying on javascript? Basically, changing the language of the title displayed in the browser tab. ...

The close menu button is not functioning properly when clicked outside the menu - the buttonevent.matches is not recognized as a

I am encountering an issue with the dropdown menu that is not closing when clicking outside of the menu button. Despite having faced this problem before, I can't seem to find a solution now. Any help would be greatly appreciated as I am uncertain why ...

How can you call a function in JavaScript based on a condition?

Is there a way to conditionally truncate text using a function called Truncate only when the offsetHeight of the left div with class demo is greater than the offsetHeight of the right div? If this condition is not met, then simply return the original conte ...

What is the best way to send HTML tag content to mark.js and delimit them with a space or comma?

I have been utilizing the mark.js library to highlight keywords on a webpage, and it's been working well. However, I now need to insert an extra space or a comma after each tag such as h1, h2, etc. Initially, I thought about using a loop like the one ...

Tips for revealing a position: absolute div that is currently hidden with display: none styling

Below is the code for a div element that I want to temporarily hide using JavaScript: <div id="mydiv" style="position: absolute; top: 60px; left:5px; right:25px; bottom:10px;"> </div> After hiding it with display:none in my ...

How can I ensure perfect center alignment in CSS?

Is there a preferred method for centering elements using CSS? <div style="position: absolute; left: 50%;"> <div style="position: relative; left: -50%"> Centered content </div> </div> or simply <div style=" ...

Bootstrap doesn't display in the dropdown menu

Struggling to get a dropdown menu to display on my page, my HTML code is: <div class="dropdown d-inline"> <div class="widget-header mr-3"> <button href="#" class="icon icon-sm rounded-circle border" data-toggle="dropdown"><i cl ...

Trimming Picture on User's Device

Currently, I am utilizing the jQuery ImgAreaSelect 0.9.10 plugin to crop images that are uploaded by users. The data input format being used is "multipart/form-data". Upon cropping an image with the plugin, it provides me with coordinates in pixels. Howev ...

CSS: float issues occurring at unpredictable intervals

In the creation of my website, I have incorporated small login and logout buttons that are positioned in the top right corner. Within a "header_content" division, there is another div with a style of "float: right" to keep it aligned in the top right corne ...

Can a button be connected to both navigate to another webpage and trigger a modal to appear on it simultaneously?

Is there a way to connect a button to a modal on a different page so that when the button is clicked, it opens another page (in a new tab with target 0) with the modal already displayed? ...

clicking on links to different sections of the page does not automatically bring you to the top of

I am working on a design similar to this: http://jsfiddle.net/MTWu5/ The layout consists of a centered page with a sticky header. The header contains menu links that lead to anchors within the page. My issue arises when clicking on these links - I would l ...

Tips for stopping a flex:1 div from expanding to accommodate its abundant content

I'm facing a situation where I need to create two columns, one fixed at 150px and the other filling up the remaining space with scroll functionality for overflow content. Despite trying to use flexbox for this layout, the second column keeps expanding ...

Expandable Navigation Menu for Desktop Websites: Utilizing a Small Icon for a Full Width and Height Dropdown Menu upon Toggle Click (Utilizing Bootstrap 4)

Struggling to achieve a full-width and height display of my hamburger menu on toggle button click. I aim to have a hamburger with small icons on the left side of the screen, which, when clicked, should reveal a transparent full-width and height layout with ...