Hỏi cách tăng độ rộng cột text link ở footer

[VNXF] Theme Digital – Sự lựa chọn hoàn hảo cho diễn đàn công nghệ hiện đại
Chào mọi người! như tiêu đề, em xin hỏi mọi người làm sao để tăng độ rộng giữa các cột?

xe.PNG


Code footer.css của em đây:
Mã:
.footer_main_bot {
    background: none repeat scroll 0 0 #34393E;
    border-top: 1px solid #474C50;
    padding: 20px 0;
}
.footer_main_bot .pageContent {
}
.footer_main_bot .pageContent:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.footer_main_bot .menu {
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 10px;
    width: 140px;
}
.footer_main_bot .menu .menu_title h3 {
    color: #98CCE6;
    font-size: 16px;
}
.footer_main_bot .menu a {
    color: #F1F9FB;
    line-height: 24px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
}
 
  • Like
Reactions: THB
Chào mọi người! như tiêu đề, em xin hỏi mọi người làm sao để tăng độ rộng giữa các cột?

View attachment 5095

Code footer.css của em đây:
Mã:
.footer_main_bot {
    background: none repeat scroll 0 0 #34393E;
    border-top: 1px solid #474C50;
    padding: 20px 0;
}
.footer_main_bot .pageContent {
}
.footer_main_bot .pageContent:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.footer_main_bot .menu {
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 10px;
    width: 140px;
}
.footer_main_bot .menu .menu_title h3 {
    color: #98CCE6;
    font-size: 16px;
}
.footer_main_bot .menu a {
    color: #F1F9FB;
    line-height: 24px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
}

Mã:
.footer_main_bot .menu { float: left; list-style: none outside none; margin: 0; padding: 10px; width: 200px; }
Tăng cái width lên nhé
 
Back
Top