Jump to content
  • 0

Активная кнопка меню


NoExist
 Share

Question

Добрый день!

Уже несколько дней ломаю голову и гуглю, но решение так и не нашел....

 

Сайт делаю на CMS DLE.

 

 

Есть меню.

            <ul>                <li><a href="/"><span>About Us</span></a></li>                <li><a href="#"><span>Services</span></a></li>                <li><a href="#"><span>Jobs</span></a></li>                <li><a href="#"><span>Contacts</span></a></li>            </ul>

Нужно, что бы при переходе на страницу About Us у нее был другой стиль

.left-menu li a:active {    background: #FFFFCC;    box-shadow: 0 0 10px #004e8d;    margin-left: 30px;}

Сейчас у меня стоит только при наведении, а мне нужно, что бы это значение оставалось. Как это сделать? Если есть способ без скриптов, то пожалуйста, поделитесь, если только скрипт, то скиньте, пожалуйста!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Нашел решение)


Вдруг кому пригодится!
 
Style =
div.left-menu ul li.current a {    background: #F5F5F5;    box-shadow: 0 0 10px green;    cursor: default;    width: 90px;    margin-left: 35px;    border-top-left-radius: 5px;    border-top-right-radius: 0px;    border-bottom-right-radius: 0px;    border-bottom-left-radius: 5px;}
 
JS = 
    <script type="text/javascript">        $(document).ready(function(){            var link = window.location.pathname;            $('.left-menu li a[href="'+link+'"]').parent().addClass('active');        });    </script>
 
 
HTML = 
        <div class="left-menu">            <ul>                <li><a href="/">About Us</a></li>                <li><a href="#">Services</a></li>                <li><a href="#">Jobs</a></li>                <li><a href="/contacts.html">Contacts</a></li>            </ul>        </div>
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