2 replies
  • WEB DESIGN
  • |
Hi warriors
im creating a website for a local client
he is very specific on the design
i was wondering if you can help me built the CSS Structure for something like this

www.grupowayseer.com/6.jpg

Its a vertical menu on the left side and a 3 pictures along with descriptions per row

i really dont want to use tables because i know affect loading time
and second i want to study more CSS and learn how to do this

can i get some tips on the CSS structure please

something like

#menu {
width: 300px;
min-height: 700px;
float left something?
background-color: #eeeeee;
margin-left: auto;
margin-right: auto; }

i dont master CSS as you can see
thanks
#css #structure
  • Profile picture of the author sham2
    You want to make left panel menu. Its easy and simple. The style you post here is good and i want to make some changes in it the it will be require menu.

    #menu {
    width: 300px;
    min-height: 700px;
    float left;
    background-color: #eeeeee;
    padding:0 5px;
    }
    #menu ul li {
    float:left;
    width:100%;
    list-style:none;
    }
    #menu ul li a{
    color:blue;
    text-decoration:none;
    }
    {{ DiscussionBoard.errors[9008010].message }}
  • Profile picture of the author MonopolyOnline
    To save yourself some issues down the road, consider starting with the Twitter Bootstrap "Frontend Framework".

    Make an informed decision, spent ten minutes here:

    Getbootstrap.com/


    To Your Success!!! Mark
    {{ DiscussionBoard.errors[9008284].message }}

Trending Topics