Tips for customizing bootstrip.min.css in Joomla-Template CSS file for screen sizes between 768px and 1140px

Having trouble adjusting the width of my website's CENTER and RIGHT columns between screen widths of 768px and 1140px. The code snippet in template.css below doesn't seem to be working as expected:

@media (max-width: 1140px) and (min-width: 768px)
{
.row-fluid .span8 {width: 80%;}
}

For all other screen sizes, the default settings from bootstrap.min.css are doing fine. The override file is named template.css and I'm using Joomla 3.5 CMS. You can view the site at this link: Appreciate any help you can provide, feel free to ask for more details if needed.

Answer №1

To ensure the proper functioning of this rule, just insert the following line into the bootstrap.min.css document.

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

What is the reason that using display none in JavaScript does not always result in an element disappearing?

I've encountered a peculiar situation multiple times where, despite using JavaScript to set certain table and div elements to display: none, their content still remains visible on the screen. I suspect it may be due to the complex structure of tables ...

strange occurrences of bootstrap.min.css.map popping up

While working on my e-commerce website using Node, Express, Mongoose, and Bootstrap, I encountered an unexpected issue related to "bootstrap.min.css.map". The error 'Cast to ObjectId failed for value "bootstrap.min.css.map" at path "_id" for model " ...

"Troubleshooting issue: Changing the image src with jQuery

Seeking assistance for an issue I am facing. I am trying to change an image upon clicking on it. It works smoothly without any animation, but when I add animations, the transition becomes jerky. <script> $("#thumbs img").click(function() ...

Tips for enlarging the font size of a number as the number increases

Utilizing the react-countup library to animate counting up to a specific value. When a user clicks a button, the generated value is 9.57, and through react-counter, it visually increments from 1.00 to 9.57 over time. Here's the code snippet: const { ...

Issue with Table Element's Full Width Within Parent Element

Here is a demonstration of the scenario in JSFiddle I have made updates to the JSFiddle demonstration here: http://jsfiddle.net/x11joex11/r5spu85z/8/. This version provides more detailed insight into how the sticky footer functions well, albeit with a hei ...

Having trouble making :hover work properly

I've been attempting to create a mega menu that activates divs on hover, but I just can't seem to get it to work. I've tried various methods, but the divs simply won't show when hovered over. If you'd like to take a look, here&ap ...

Choose class based on the retrieved information

Good morning, I am working on dynamically setting the class of a td element based on data fetched from a database to reflect any changes or updates. One of the fields returned has four possible options, and I need to modify the CSS class of that field acc ...

Run a PHP function using <button onclick=""> tag

Is it possible to trigger the execution of a PHP script when clicking an HTML button? I am aware that simply calling a PHP function directly from the button's onclick event like this: <button onclick="myPhpFunction("testString")">Button</butt ...

When you hover, a panel will slide in from the right. When you move the mouse

Hey everyone, I've been trying to implement the solution provided but I seem to be missing something. Can you take a look at my fiddle? http://jsfiddle.net/cancerian73/Ej5k8/ body { position: relative; min-height: 3000px; margin: 0; padding: 0; to ...

Exploring the Canvas with Full Element Panning, Minimap Included

Currently, I am working on incorporating a mini map onto my canvas that mirrors what is displayed on the main canvas. The main canvas includes zoom and pan functions. I have created a rectangular shape for the minimap to display the content of the canvas. ...

Can we expect every bullet point to be consistently indented at precisely 1.8em?

Recently, I created a dropdown menu using only CSS. The challenge was to have a horizontal bar of items that can each expand into a vertical menu. However, I wanted the expanded menus to display bulleted lists instead of tertiary menus. By nesting three ul ...

I'm struggling to make the jquery parentsUntil function work properly

Would appreciate some help with using the jquery parentsUntil method to hide a button until a radio box is selected. I've been struggling with this for a few days now and can't seem to figure out what I'm doing wrong. Any insights would be g ...

Body of the table spanning the entire width of the screen

Looking for a solution to create a responsive table layout where the thead stretches up to a specified div, while the tbody expands to fill the entire screen width. Is this achievable without using fixed values? https://i.stack.imgur.com/v2ZYx.png It is ...

Make sure to always nest child divs within their parent div to maintain

Hey there, I have a question that might seem silly to some. I've come across similar questions but none of the solutions worked for me. The problem I'm facing is with two nested divs - one inside the other. I want the inner div (taskbar-bar) to ...

Error in jQuery slideDown caused by IE7 when child element has position:relative

Check out this simple example: http://jsfiddle.net/CnUkA/5/ I am facing an issue with the slideDown animation applied to my outer div. Inside this div, there is an inner div with position:relative. In IE7, the inner div displays immediately when clicking ...

A fixed-height div with scrolling capability within a bootstrap column

I am new to CSS and hoping this issue is a simple one. Imagine I have a responsive, two-column Bootstrap 3 grid layout. In the left column, I want it to always fill the height of the browser window. However, within that column, I need a scrollable div to d ...

The dropdown login form is malfunctioning on my Wordpress website

After reading various tutorials and guides online, I managed to set up a login screen. You can view the code in my jsfiddle: Jsfiddle. Unfortunately, I am facing issues with making the code function correctly. Being new to Jquery, I might have made a begin ...

The CSS file is not loading correctly

So it appears that, based on this discussion, CSS files loaded from the link tag reference files relative to the folder where the CSS file is located... Here is my directory structure: httpdocs/ css/ thecss.css bg.png In the thecs ...

When a user clicks on a navigation link, the arrow pointer changes

I have successfully implemented a right arrow pointer on my navigation list. When clicking on these navigation links, they open a sub-navigation list. However, I am trying to make the arrow change to point downwards when the link is visited, but so far w ...

Creating a hover effect instead of a click event in a Bootstrap 4 dropdown menu

Looking to create a hover effect instead of a click in the bootstrap dropdown menu? Past answers lack jQuery code that can simply be copied and pasted into your script for optimal results. Additionally, previous solutions were written for older versions o ...