collection of 36 free css based template

Posted by admin under css based template

Sound box

css based template

css based template

General

templatemo_231_general

Portfolio

templatemo_227_portfolio

Metal curve

templatemo_226_metal_curve

Wedding store

templatemo_224_wedding_store

Milky

templatemo_223_milky

Wall

templatemo_221_wall

Greeny

templatemo_218_greeny

Travel tour

templatemo_217_travel_tour

Pink Ship

templatemo_216_pink_shop

Particle

templatemo_204_particle

Fruit Art

templatemo_199_fruit_art

Steak

templatemo_190_steak

Showcase

templatemo_189_showcase

Black beat

templatemo_188_black_beat

Green black

templatemo_183_green_black

Speaker Blog

templatemo_180_speaker_blog

Stable

templatemo_179_stable

Mini

templatemo_172_mini

Wooden Blog

templatemo_171_wooden_blog

Garden

templatemo_169_garden

Specific

templatemo_168_specific

Design Team

templatemo_167_design_team

Yellow Blog

templatemo_157_yellow_blog

Professional

templatemo_156_professional

Architect

templatemo_141_architect

Greenhome

templatemo_132_greenhome

Game

templatemo_131_game

Car

templatemo_123_car

Simple Gary

templatemo_121_simple_gray

Fruit

templatemo_119_fruit

Pinky

templatemo_096_pinky

Business

templatemo_091_business

Book Store

templatemo_086_book_store

Design Blog

templatemo_084_design_blog

Tea and Meal

templatemo_082_tea_and_meal

Find more on Templatemo

No Comments

CSS-How to keep a Div always center in webpage

Posted by admin under Css artical

How to keep a Div always center in webpage

Usually we as a web designer we all want  our main content  keeps floating in middle of webpage when user resize browser or change display resolution and here is the small trick I used in my website

Here is the logic of the css goes

For example if your div id is container and width is suppose 700px
#container {
width: 700px;
position: relative;
left : 50%;
margin-left: -200px;
}

So this will always remain in center of the webpage

thnaks

mrphpguru

No Comments