After "Search" is removed, the buttons such as "view new posts", "Hot Topics", "post ranking", and "User List" that used to work with "Search" moved to the left, to center these buttons, perform the following operations:
Find
Program code <Div style = "float: Left; padding: 3px 0px; Height: 28px; text-indent: 20px;">
<A href = "query. asp? Stype = 3 & psearch = 0 & nsearch = 0 "> View new stickers </a>
<Font face = "wingdings" color = "666666"> v </font>
<A href = "query. asp? Stype = 4 & psearch = 0 & nsearch = 0 "> Hot Topics </a>
<Font face = "wingdings" color = "666666"> v </font>
<A href = "infolist. asp? T = toplist & orders = 1 "> posting ranking </a>
<Font face = "wingdings" color = "666666"> v </font>
<A href = "infolist. asp? T = toplist & orders = 7 "> User List </a>
</Div>
ArticleFirst in the aboveCodeRemove "float: Left;" (float only has none | left | right attribute, no center attribute), and then remove the "text-indent: 20px; ", and then all the above Code is embedded with <Div align =" center "> </div>.
Program code <Div align = "center">
<Div style = "padding: 3px 0px; Height: 28px;">
<A href = "query. asp? Stype = 3 & psearch = 0 & nsearch = 0 "> View new stickers </a>
<Font face = "wingdings" color = "666666"> v </font>
<A href = "query. asp? Stype = 4 & psearch = 0 & nsearch = 0 "> Hot Topics </a>
<Font face = "wingdings" color = "666666"> v </font>
<A href = "infolist. asp? T = toplist & orders = 1 "> posting ranking </a>
<Font face = "wingdings" color = "666666"> v </font>
<A href = "infolist. asp? T = toplist & orders = 7 "> User List </a>
</Div>
</Div>