Jump to content
  • 0

Проблема с отступом


_Tornado_
 Share

Question

Здравствуйте!

Есть горизонтальное меню, перед одним из пунктов должна быть иконка. Вывод:

<?php
$title = {"Главная","Отчетность","Обучение","Услуги","Контакты"};

for($i=0; $i<count($title); $i++)
{
if($i=3)
{
echo "<a class=\"on\"><span class=\"icon\">{$title[$i]}</span></a>\n";
}
else
{
echo "<a class=\"on\">{$title[$i]}</a>\n";
}
}
?>

стили:

div.main_menu {
font-size:13px;
font-weight:bold;
line-height:16px;
background:#cfc9ab url(img/menu_bg.gif) repeat-x left bottom;
}
div.menu_pos {
padding:0px 0px 14px 0px;
}
div.main_menu a {
color:#130f0b;
text-decoration:none;
margin:0px 10px 0px 23px;
height:20px;
padding-top:7px;
float:left;
}
div.main_menu a:hover {
padding-top:4px;
border-top:3px solid #A66452;
}
div.main_menu a.on{
padding-top:4px;
border-top:3px solid #A66452;
}

div.main_menu .icon {
background:url(img/lock.gif) no-repeat;
border:0px;
width:12px;
}

Иконка лезет на текст.

Вопрос: как сделать отступ между иконкой и текстом? Помогите, пожалуйста)

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

мб

div.main_menu .icon {
background:url(img/lock.gif) no-repeat;
border:0px;
width:12px;
margin-right: 15px;
}

Хотя... Можете показать html код этой менюшки меня смущает {$title[$i]} возможно все не так как я представляю )

Edited by stars
Link to comment
Share on other sites

  • 0

Спасибо за ответ, я разобралась, все работает.

нужно было написать так:

echo "<a class=\"on\"><span class=\"icon\"></span>{$title[$i]}</a>\n";

и так:

div.main_menu .icon {
background:url(img/lock.gif) no-repeat;
border:0px;
width:12px;
padding-right: 15px;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy