Jump to content
  • 0

как выделить выбранный пункт в css меню


px379
 Share

Question

Здравствуйте. Наверное начну с того, что именно мне нужно.

Вот есть горизонтальное css меню

226757d9f6e0.jpg

и надо сделать так, чтоб например при выборе раздела "Photoshop" цвет (картинка) вкладки менялся на какой нибудь другой, ну чтоб пользователь видел в каком разделе он находится.

Эор можно сделать средствами CSS?

.top-menu {
height: 28px;
padding-left: 30px;
position: absolute;
}

.top-menu a {
display: block;
float: right;
text-decoration: none;
color: #3b3b3b;
z-index: 10;
width: 111px;
display: block;
height: 28px;
text-align: center;
line-height: 28px;
background: url(../images/top-menu2.png) left top no-repeat;
margin: 0 0 0 -7px;
position: relative;
font-family: Tahoma;
font-size: 14px;
}


.top-menu a:hover {
background: url(../images/top-menu2.png) left bottom no-repeat;
color: #fff;
text-decoration: none;
font-family: Tahoma;
font-size: 14px;

}


.top-menu a:[color="#FF0000"]вот чот сюда написать?[/color] {
background: url(../images/top-menu.png) left bottom no-repeat;
color: #fff;
text-decoration: none;
font-family: Tahoma;
font-size: 14px;

}

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
ну чтоб пользователь видел в каком разделе он находится.

Эор можно сделать средствами CSS?

Нет. Можно на сервере определять страницу и соответствующей вкладке навешивать класс.

Link to comment
Share on other sites

  • 0
ну чтоб пользователь видел в каком разделе он находится.

Эор можно сделать средствами CSS?

Нет. Можно на сервере определять страницу и соответствующей вкладке навешивать класс.

Ясно. Ну чтож, тогда буду меню на JS искать.

Link to comment
Share on other sites

  • 0
Ясно. Ну чтож, тогда буду меню на JS искать.

А какая разница :huh: JS поможет определить, на какой странице находится пользователь?

По идее, наверное, да... Но JS может определить какой пункт меню активен. Темболее я видел менюшки на сайтах, в которых выбранный мною пункт меню выделялся.

Link to comment
Share on other sites

  • 0

Хорошая формулировка задачи — половина решения. В вашем случае решение уже прозвучало: на каждой странице задавать текущему пункту особый класс. Удобнее всего делать это серверным скриптом.

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