Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jamesacp

    (@jamesacp)

    Thank you both for your speedy reply, and help. I have one last question as CSS is foreign to me where html was my area of study in college. If I want to chose a different theme it changes the layout of the grid instead of the rows being horizontal it changes the rows to vertical. Is there a css coding fix for this?

    Thread Starter jamesacp

    (@jamesacp)

    Hello,

    Thank you for your speedy response. Below is the code.

    
    <!DOCTYPE html>
    <html>
    <head>
    <meta name=”viewport” content=”width=device-width, initial-scale=1″>
    <style>
    * {
    box-sizing: border-box;
    }
    
    /* Create four equal columns that floats next to each other */
    .column {
    float: left;
    width: 25%;
    padding: 10px;
    height: 300px; /* Should be removed. Only for demonstration */
    }
    
    /* Clear floats after the columns */
    .row:after {
    content: “”;
    display: table;
    clear: both;
    }
    </style>
    </head>
    <body>
    
    <div class=”row”>
    <div class=”column” style=”background-color:#ffff;”
    • ELECTRICAL
    • PLUMBING
    • POWER WASHING
    • CONCRETE
    • DRYWALL
    • STUCCO
    • PAINT
    • FRAMING
    • GARAGE STORAGE UNITES
    (ASSEMBLY / BUILDING)
    • ROUGH & FINISH CARPENTRY
    *VALUE ENGIREERING
    *CONSTRUCTION PROJECTS & CONSULTATION
    *ELDERY AND HANDY-CAPABLE RAILS & EQUIPMENT
    (INSTALLATION & ASSEMBLY)
    </div>
    
    <div class=”column” style=”background-color:#ffff;”>
    • WINDOW SCREENS
    • DOORS & WINDOWS
    • FIREPLACES
    • CABINETS
    • TRASH REMOVAL & YARD CLEAN-UP
    • DECKS
    • FENCES
    • COMMERCIAL & RESIDENTIAL
    • (HOURLY & MONTHLY MAINTENANCE
    • SERVICE CONTRACTS AVAILABLE)
    • CONSTRUCTION & PROJECT CONSULTATION<
    
    </div>
    <div class=”column” style=”background-color:#ffff;”>]
    • DEMOLTION & TRASH HALLING
    • HONEY DO LISTS
    • MAINTENANCE (HOURLY / MONTHY)
    • AIR B&B MAINTENANCE & UPGRADES
    (MONTHLY CONTRACTS AVAILABLE)
    • REAL ESTATE AND RENTAL MAINTENANCE
    (MONTHLY CONTRACTS AVAILABLE)
    KITCHENS
    BATHROOMS
    MINOR ROOF REPAIRS
    </div>
    
    </div>
    </div>
    
    </body>
    </html>
    
    • This reply was modified 4 years, 3 months ago by Jose Castaneda. Reason: code formatting
Viewing 2 replies - 1 through 2 (of 2 total)