Free door header calculator determines exact 2x4, 2x6, 2x8 header sizes for any door width. Get instant load-bearing wall recommendations following IRC building codes.
Valid range: 12-144 inches
heightRange
The recommended header size is based on the door width and whether the wall is load bearing. Wider doors and load bearing walls require larger headers to properly support the structure above the door opening.
Calculate the correct door header size for any construction project instantly. Our free door header calculator helps contractors, builders, and DIY enthusiasts determine whether you need a 2x4, 2x6, 2x8, or larger header based on door width and load-bearing wall requirements.
Proper door header sizing is crucial for structural integrity and building code compliance. Undersized headers cause wall sagging, door frame distortion, and expensive structural repairs. Our header size calculator follows IRC guidelines and standard building practices to ensure safety while optimizing material costs.
Get your door header size in seconds - simply enter your door width and load type below for instant results.
Door Width | Non-Load Bearing | Load Bearing |
---|---|---|
30-36" | 2x4 | Double 2x4 |
48" | 2x6 | Double 2x6 |
6 feet (72") | 2x8 | Double 2x8 |
8 feet (96") | 2x10 | Double 2x10 |
A door header (also called a door lintel or beam) is a horizontal structural element installed above door openings to transfer the weight of the wall, ceiling, and possibly roof above to the adjacent wall studs. Headers are typically made from dimensional lumber (like 2x4s, 2x6s, etc.) and may be single or doubled depending on the load requirements.
A complete door header system typically includes:
The size of the header beam is what our calculator helps you determine, as this is the critical component that must be properly sized based on the width of the door opening and the load it needs to support.
The size of a door header is primarily determined by two factors:
The following table shows generally accepted header sizes based on door width for typical residential construction:
Door Width (inches) | Non-Load Bearing Wall | Load Bearing Wall |
---|---|---|
Up to 36" (3') | 2x4 | Double 2x4 |
37" to 48" (3-4') | 2x6 | Double 2x6 |
49" to 72" (4-6') | 2x8 | Double 2x8 |
73" to 96" (6-8') | 2x10 | Double 2x10 |
97" to 144" (8-12') | 2x12 | Double 2x12 |
Over 144" (12') | Engineered beam | Engineered beam |
These guidelines are based on standard construction practices and may vary depending on local building codes, the specific load conditions, and the type of lumber used.
The sizing of headers follows engineering principles related to beam deflection and bending stress. The basic formula for calculating the required section modulus of a beam is:
Where:
For a simply supported beam with a uniform load, the maximum bending moment is:
Where:
This is why wider door openings require larger headers - the bending moment increases with the square of the span length.
Our door header size calculator makes it easy to determine the appropriate header size for your door opening. Follow these simple steps:
The calculator provides a recommended header size based on standard construction practices. The result will be displayed in the format of dimensional lumber specifications (e.g., "2x6" or "Double 2x8").
For very large openings (over 12 feet wide), the calculator will recommend consulting with a structural engineer, as these spans typically require specially designed beams.
Here are some example scenarios to help you understand how the calculator works:
Standard interior door
Exterior entry door
Double door opening
Large patio door
The door header size calculator is useful in various construction and renovation scenarios:
When building a new home, proper header sizing is essential for all door openings. Using the calculator ensures that:
During renovations, especially when creating new door openings in existing walls, the calculator helps:
For commercial buildings, which often have wider door openings, the calculator assists in:
For DIY enthusiasts tackling home improvement projects, the calculator:
While dimensional lumber headers are most common, there are alternatives that might be more appropriate in certain situations:
Engineered lumber headers (LVL, PSL, LSL)
Steel headers
Reinforced concrete headers
Flitch plate headers
The concept of structural support above door openings dates back thousands of years. Ancient civilizations used stone lintels above doorways in structures that still stand today. As building methods evolved, so did the approaches to supporting the weight above openings.
Modern building codes have specific requirements for door headers based on extensive engineering research and real-world performance. The International Residential Code (IRC) and local building codes provide tables for header sizing based on:
These code requirements ensure that buildings are constructed safely while avoiding unnecessary material costs from oversized headers.
Here are examples of how to calculate door header sizes programmatically:
1function calculateHeaderSize(doorWidth, isLoadBearing) {
2 // Door width in inches
3 if (doorWidth <= 36) {
4 return isLoadBearing ? "Double 2x4" : "2x4";
5 } else if (doorWidth <= 48) {
6 return isLoadBearing ? "Double 2x6" : "2x6";
7 } else if (doorWidth <= 72) {
8 return isLoadBearing ? "Double 2x8" : "2x8";
9 } else if (doorWidth <= 96) {
10 return isLoadBearing ? "Double 2x10" : "2x10";
11 } else if (doorWidth <= 144) {
12 return isLoadBearing ? "Double 2x12" : "2x12";
13 } else {
14 return "Engineered beam required";
15 }
16}
17
18// Example usage
19const doorWidth = 60; // inches
20const isLoadBearing = true;
21console.log(`Recommended header: ${calculateHeaderSize(doorWidth, isLoadBearing)}`);
22
1def calculate_header_size(door_width, is_load_bearing):
2 """
3 Calculate the recommended door header size based on door width and load type.
4
5 Args:
6 door_width (float): Door width in inches
7 is_load_bearing (bool): Whether the wall is load bearing
8
9 Returns:
10 str: Recommended header size
11 """
12 if door_width <= 36:
13 return "Double 2x4" if is_load_bearing else "2x4"
14 elif door_width <= 48:
15 return "Double 2x6" if is_load_bearing else "2x6"
16 elif door_width <= 72:
17 return "Double 2x8" if is_load_bearing else "2x8"
18 elif door_width <= 96:
19 return "Double 2x10" if is_load_bearing else "2x10"
20 elif door_width <= 144:
21 return "Double 2x12" if is_load_bearing else "2x12"
22 else:
23 return "Engineered beam required"
24
25# Example usage
26door_width = 60 # inches
27is_load_bearing = True
28print(f"Recommended header: {calculate_header_size(door_width, is_load_bearing)}")
29
1public class DoorHeaderCalculator {
2 public static String calculateHeaderSize(double doorWidth, boolean isLoadBearing) {
3 if (doorWidth <= 36) {
4 return isLoadBearing ? "Double 2x4" : "2x4";
5 } else if (doorWidth <= 48) {
6 return isLoadBearing ? "Double 2x6" : "2x6";
7 } else if (doorWidth <= 72) {
8 return isLoadBearing ? "Double 2x8" : "2x8";
9 } else if (doorWidth <= 96) {
10 return isLoadBearing ? "Double 2x10" : "2x10";
11 } else if (doorWidth <= 144) {
12 return isLoadBearing ? "Double 2x12" : "2x12";
13 } else {
14 return "Engineered beam required";
15 }
16 }
17
18 public static void main(String[] args) {
19 double doorWidth = 60; // inches
20 boolean isLoadBearing = true;
21 System.out.println("Recommended header: " +
22 calculateHeaderSize(doorWidth, isLoadBearing));
23 }
24}
25
1' Excel VBA Function for Door Header Size
2Function DoorHeaderSize(DoorWidth As Double, IsLoadBearing As Boolean) As String
3 If DoorWidth <= 36 Then
4 DoorHeaderSize = IIf(IsLoadBearing, "Double 2x4", "2x4")
5 ElseIf DoorWidth <= 48 Then
6 DoorHeaderSize = IIf(IsLoadBearing, "Double 2x6", "2x6")
7 ElseIf DoorWidth <= 72 Then
8 DoorHeaderSize = IIf(IsLoadBearing, "Double 2x8", "2x8")
9 ElseIf DoorWidth <= 96 Then
10 DoorHeaderSize = IIf(IsLoadBearing, "Double 2x10", "2x10")
11 ElseIf DoorWidth <= 144 Then
12 DoorHeaderSize = IIf(IsLoadBearing, "Double 2x12", "2x12")
13 Else
14 DoorHeaderSize = "Engineered beam required"
15 End If
16End Function
17' Usage in Excel: =DoorHeaderSize(60, TRUE)
18
For a 30-inch door, you need a 2x4 header for non-load-bearing walls or a double 2x4 header for load-bearing walls. This is the standard size for most interior doors and bathroom doors.
A 32-inch door requires a 2x4 header for non-load-bearing walls or a double 2x4 header for load-bearing walls. This is the most common residential door width.
For a 36-inch door opening, use a 2x4 header for non-load-bearing walls or a double 2x4 header for load-bearing walls. This size works for standard exterior doors.
A 48-inch opening requires a 2x6 header for non-load-bearing walls or a double 2x6 header for load-bearing walls. This size is common for double doors or wide single doors.
For a 6-foot (72-inch) opening, you need a 2x8 header for non-load-bearing walls or a double 2x8 header for load-bearing walls. This size supports patio doors and large openings.
Yes, load-bearing walls require double headers for most door openings. Double headers provide the structural strength needed to support floors, ceilings, and roof loads above.
Header size depends on door width and load type:
A door header is a horizontal structural beam that spans across the top of a door opening to support the weight of the wall, ceiling, and possibly roof above. It transfers this load to the vertical framing members (jack studs) on either side of the door, ensuring the structural integrity of the wall.
A wall is typically load-bearing if:
If you're unsure, consult with a structural engineer or building professional.
Using a smaller header than recommended is not advisable as it may lead to structural issues such as sagging, wall cracks, or door frame distortion. In some cases, it may also violate building codes. Always follow the recommended header size or consult with a structural engineer for custom solutions.
Yes, even closet doors require headers. While the load above a closet door opening might be less than that of an exterior door, proper structural support is still necessary. For non-load-bearing walls with narrow closet openings, a 2x4 header is typically sufficient.
A single header consists of one piece of dimensional lumber (e.g., a single 2x6), while a double header consists of two pieces of the same lumber fastened together (e.g., two 2x6s). Double headers provide greater strength and are typically required for load-bearing walls or wider openings.
Yes, engineered lumber products like LVL (Laminated Veneer Lumber), PSL (Parallel Strand Lumber), or LSL (Laminated Strand Lumber) make excellent door headers. They're stronger and more dimensionally stable than traditional lumber, allowing for longer spans with less material depth. They're especially useful for wide openings or when height is limited.
To install a door header:
Yes, building codes like the International Residential Code (IRC) provide tables for determining header sizes based on factors such as span length, building width, roof snow load, and the number of floors supported. Local building codes may have additional or different requirements, so always check with your local building department.
If you're replacing a door with one of the same size or smaller, the existing header can typically be reused. However, if you're enlarging the door opening, you'll need to install a new, appropriately sized header. Always inspect the existing header for any signs of damage or sagging before deciding to reuse it.
For a 6-foot (72-inch) door opening, you need a 2x8 header for non-load-bearing walls or a double 2x8 header for load-bearing walls. Large openings like patio doors require substantial structural support.
Header size can significantly impact material costs, especially for multiple doors or large openings. For example, a 2x12 costs considerably more than a 2x4. However, using the correct size is essential for structural integrity and safety. The cost difference between proper and improper sizing is minimal compared to the potential cost of repairs for structural issues caused by an undersized header.
A 2x8 header can span up to 6 feet (72 inches) for non-load-bearing walls and should be doubled for load-bearing applications. For spans exceeding 6 feet, you'll need a 2x10 or larger header.
Yes, load-bearing walls typically require double headers for most door openings. The double configuration provides additional strength to support the structural loads from floors, ceilings, and roofs above.
For wide door openings over 12 feet, standard lumber headers may not be sufficient. Our calculator will recommend engineered beam solutions like LVL or steel beams that require professional structural engineering.
Now that you understand the importance of proper door header sizing, try our calculator to determine the right header size for your project. Simply enter your door dimensions and whether the wall is load-bearing, and get an instant recommendation based on standard building practices.
For complex projects or unusual situations, always consult with a structural engineer or building professional to ensure your construction meets all safety requirements and building codes.
Discover more tools that might be useful for your workflow