Styling with CSS - Mastering the Genesis Bootstrapped Column Grid

Having some issues with the alignment of the margins on my widgetized home-page for a WordPress Genesis theme - Outreach Pro.

The two “About” widget areas on the top row are not lining up correctly with the third (Friends) & fourth (Donate) widget areas on the second row. Do I need an extra DIV to adjust the width of these columns?

If you want to see the page in question, visit

Answer №1

It appears that there are multiple column classes nested inside other columns, requiring me to implement specific targeting rules in order to avoid affecting unrelated elements. I suggest trying the sample styling codes below to adjust the margins of the widget areas above the ABOUT section to align with those below:

.home .one-half .one-half.first .widget-1{ margin-right:8px}
.home .one-half .one-half.home-top .widget-greeen { margin-left:5px}

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 are the steps to create a responsive element with bootstrap and css?

I have a unique setup where I have text on the left side and two ellipses/circles on the right side. I need these circles to be responsive. You can see a live demo on jsfiddle here Below is my current code: HTML <div class="container"> <div ...

What steps should I follow to place my dropdown menu in the desired location?

I'm experiencing an issue with my dropdown menu. In the navbar, I have two dropdown menus - one for the user and the other for notifications. The user's dropdown works fine, but the notification dropdown appears to the left of my site when clicke ...

What is the best way to eliminate excess space on the right side of a div element

I recently utilized a column structure with bootstrap 4, resulting in a layout with 1 row containing 2 columns: <div class="left"> <hr class="container hline"> <div id="main" class="container border"> <di ...

Can you make a vertical line that remains a constant size even when the window is resized?

Can someone help me with this? I'm not sure if I'm using the right values for top, left, and bottom. Here's an example below: div.line { width:4px; background-color: black; position: fixed; top:180px; bottom:400px; ...

Display all pages in the DataTables plugin while utilizing responsive tables and additional features

I am struggling to combine the responsive and fixed header attributes of my current function with the "Show All" list feature, similar to what is demonstrated in this example: https://datatables.net/examples/advanced_init/length_menu.html I need assistanc ...

Introduce new material at the start of each line, akin to what ::before accomplishes for the initial line

I am currently working on customizing the appearance of my <code>/<pre> tags while ensuring that users can still easily highlight and copy the code. The method I had in mind (shown below) only applies to the first line and doesn't repeat ...

Is it possible to align items in flexbox to a specific baseline?

Is it possible to specify a baseline override when utilizing flexbox and trying to use align-items:baseline? I have a flex container that contains various divs such as title, image, body, and description. For these flex items, I want them to be centered ...

Swap the Text for a Button

I've been searching for a solution to this problem, but all I seem to find online is advice on how to "replace button text." What I'm trying to achieve is to have text change into a button when hovered over. I've attempted using fadeIn/fade ...

Design a styled rectangular tab using CSS

Does anyone know of any cool CSS techniques for achieving the tabbed rectangle appearance depicted in the image below? While it's clear that accomplishing this with just one div is not possible, is there a more efficient method than layering one div ...

Ensure that the first option in the Woocommerce 2 Variable Product Dropdown List always displays all available choices

I am currently working on a variable WooCommerce product that includes 2 drop-down select fields. The first field is for selecting the Type of Product (framed or unframed artwork) and the second field is for choosing the Size of Artwork. With the help of ...

Discover if every single image contains a specific class

HTML : <div class="regform"><input id="username" type="text" name="username" placeholder="Username" required><h3 class="check"><img src=''/></h3></div> <div class="regform"><input id="password" type=" ...

Ways to verify the existence of a username in WordPress without the need to refresh the page

How can I check if a username exists in the database without refreshing the page in a Wordpress form using AJAX? I've tried implementing AJAX in Wordpress before but it didn't work. Can someone provide me with a piece of helpful code or a link to ...

Fade out with CSS after fading in

After setting an animation property on an HTML element to display it, I want the same animation in reverse when a button is clicked to hide it. How can I achieve this effect? "Working Animation": .modal { animation: myAnim 1s ease 0s 1 normal fo ...

Issue with alignment of Bootstrap inline form field on top and bottom levels

I seem to be encountering an issue highlighted in the image below: My goal is to have the state dropdown perfectly aligned with the top and bottom edges of the other two controls. Here's the code snippet I've used to create this section of the i ...

The issue of children inside a parent div not respecting the height value set to 100% when the parent div has a min

My goal is to adjust the height of children elements within a parent div that has a min-height of 100%. I want the wrapper's height to dynamically adjust based on the content it contains. When I set the min-height to 100%, the wrapper expands accordin ...

Cannot apply "!important" using Jquery to a dynamically sized tag in IE11

Here is a script I have: box.copyHeight = function() { var heights = [], i, hT; for (i = 0; i < arguments.length; i++) { if ($(arguments[i])) { $(arguments[i]).css('height', ''); ...

Prevent CSS3 columns from reverting back to their original state after being rendered

Utilizing css3 columns, I have created a layout with an unordered list displayed in 3 columns. Each list item contains another list that can be toggled to show or hide by clicking on the title using jQuery. The structure of the html is as follows (with ex ...

Equal height elements - Bootstrap

Is there a way to make all elements in a list the same height, even if one element has more text than the others? I've been using divs for this purpose, but I'm open to switching to li items. Any advice on the best approach? I'm currently w ...

What could be causing my font to not display properly in IE11 despite applying this CSS rule?

The CSS code I have is working correctly in Chrome and Firefox, but it doesn't seem to be displaying properly in IE11. The CSS is being imported from an external node module, so making direct changes to it might be problematic. Any thoughts on how to ...

CSS navigation layout difficulties

There seems to be an issue with the navigation on the website. The problem occurs intermittently, either during the initial load or after the user has browsed a few pages. The content within the navigation doesn't align properly and shifts down by abo ...