Posts by T. Bako • 71 points
3 posts
-
1
votes1
answer216
viewsA: Separate Styles in Three Column Division
Have you tried that? .left-column { color:#333; padding:0px; margin:0px; border:0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } If you have more elements…
-
0
votes1
answer284
viewsA: Fade transition between sessions of a site with different content
You can use the wow js. + Animate.css. Just add the class with the effect you want along with the wow class. On the site it explains well how you install the plugin, but the HTML would look…
-
3
votes1
answer48
viewsA: Grid 960 smaller than the screen
To always achieve the full width of the screen, you would need to adapt this grid to percentage by recalculating the PX into %. Something like: .container_16 {width:100%} .grid_1 {width:6.25%} /*…