Jump to content

[Solve]Next Css


Recommended Posts

i tried but nothing happened

here is the css

 

* ************************************************************************************************

SUB CATEGORIES

************************************************************************************************ */

#subcategories {margin-top:15px}

#subcategories h3 {

padding:14px 12px;

font-size:13px;

color:#fff;

text-transform:uppercase;

text-shadow:0 1px 0 #666;

background:url(../img/bg_table_th.png) repeat-x 0 0 #999

 

}

 

.inline_list {

list-style-type:none;

margin-top:10px;

}

.inline_list li {

padding:10px 0;

border-bottom:1px dotted #ccc

}

.inline_list li .img {

float:left;

margin-right:15px

}

.inline_list li img {

border:1px solid #ccc

}

.inline_list li .cat_name {

font-weight:bold;

font-size:13px

}

Link to comment
Share on other sites

like i said i tried to modify every piece but nothing hapenned even if i put your line in every part like this

 

/* ************************************************************************************************

SUB CATEGORIES

************************************************************************************************ */

#subcategories {

margin-top:15px

display:block;

clear:both;

overflow:hidden;

}

 

#subcategories h3 {

padding:14px 12px;

font-size:13px;

color:#fff;

text-transform:uppercase;

text-shadow:0 1px 0 #666;

background:url(../img/bg_table_th.png) repeat-x 0 0 #999

display:block;

clear:both;

overflow:hidden;

}

 

.inline_list {

list-style-type:none;

margin-top:10px;

display:block;

clear:both;

overflow:hidden;

}

.inline_list li {

padding:10px 0;

border-bottom:1px dotted #ccc

display:block;

clear:both;

overflow:hidden;

}

.inline_list li .img {

float:left;

margin-right:15px

display:block;

clear:both;

overflow:hidden;

}

.inline_list li img {

border:1px solid #ccc

display:block;

clear:both;

overflow:hidden;

}

.inline_list li .cat_name {

font-weight:bold;

font-size:13px

display:block;

clear:both;

overflow:hidden;

}

Link to comment
Share on other sites

in fact i found the right place its in the global.css

but i m not very good in css and its doesnt work if you have some idea :)

 

/* pagination ********************************************************************************** */

form.pagination {display:none;}

 

div.pagination {

margin:10px 0;

text-align: center

}

ul.pagination {list-style-type:none}

ul.pagination li {display: inline;}

ul.pagination a, ul.pagination span {

display:inline-block;

height:24px;

width:24px;

border:1px solid #eee;

-moz-border-radius:2px;

-webkit-border-radius:2px;

border-radius:2px;

font:11px/24px Arial,Verdana,sans-serif;

color:#999

}

ul.pagination a {

text-align:center;

}

ul.pagination a:hover {

color:#333;

border:1px solid #333

}

ul.pagination .current span {

color:#000;

border:1px solid #fff

}

ul.pagination li.disabled span {color:#ccc}

 

#pagination_previous {float:left}

#pagination_next {float:right

 

}

 

.ie7 #pagination_previous,

.ie7 #pagination_next {float:none}

 

#pagination_previous a, #pagination_previous span,

#pagination_next a, #pagination_next span {

padding:0 8px;

width:auto;

}

#pagination_previous span,

#pagination_next span {

color:#ccc;

border:1px solid #eee

}

Link to comment
Share on other sites

it is related also to the subcategories.

all you have to do is to change the block display type to block with clear:both and overflow as hidden;

 

but everything depends also on other styles that you've got. it's hard to check it without live site.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...