What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

Shadow text.

Jasper

New member
Joined
Jun 1, 2024
Messages
4
Reaction score
0
HTML Coins
0
I have made a menu on my website with the use of teext-shadow.
But I only want to use this effect on a part of my menu.
Now I am trying to turn this effect off, but I can not get it to work propper. I hope you can help me a bit.

The part I do not want to use with text-shadow is the sub-menu and sub-sub-menu

Css
CSS:
.menu_wrap ul li a {

    font-family: "Barlow Condensed", sans-serif;

    font-weight: 600;

    font-size: 17px; line-height:40px;

    color: #000;

    text-transform: uppercase;

    text-decoration: none;

    text-shadow:

-1px -1px 0 #c0c0c0,

1px -1px 0 #c0c0c0,

-1px 1px 0 #c0c0c0,

1px 1px 0 #c0c0c0;

}


.menu_wrap ul li ul.sub-menu {display: none;

text-shadow:

0px 0px 0 #c0c0c0,

0px 0px 0 #c0c0c0,

0px 0px 0 #c0c0c0,

0px 0px 0 #c0c0c0;

}

.menu_wrap ul li:hover ul.sub-menu {display: block; background-color: #f1f1f1;

text-shadow:

0px 0px 0 #c0c0c0,

0px 0px 0 #c0c0c0,

0px 0px 0 #c0c0c0,

0px 0px 0 #c0c0c0;}


Code:
<div class="container">
      <div class="menu_wrap">
        <div class="logo"><a href="index"><img src="images/logo.png" alt="logo"></a></div>
        <ul class="menu">
          <li <?php if($pagina=='index.php') {?>class="active"<?php } ?>><a href="index.php">Home</a></li>
          <li> <a href="#">Podia<img src="images/down-arrow.png" alt=""></a>
            <ul class="sub-menu">    
              <li <?php if($pagina=='podia') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podia">Onze podia</a>';?></li>
              <li <?php if($pagina=='berekening') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'berekening">Uw eigen podium berekenen</a>';?></li>
              <li <?php if($pagina=='ronde-podia') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'ronde-podia">Ronde podia</a>';?></li>
              <li <?php if($pagina=='driehoek-podia') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'driehoek-podia">Driehoek podia</a>';?></li>
              <li <?php if($pagina=='rolstoel-ramp') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'rolstoel-ramps">Rolstoel ramps</a>';?></li>
              <li> <a href="#">Podium onderdelen <img src="images/down-arrow.png" alt=""></a>
                <ul class="sub-sub-menu">
                  <li <?php if($pagina=='podiumdelen') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podiumdelen">Podiumdelen</a>';?></li>            
                  <li <?php if($pagina=='podium-poten') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podium-poten">Podiumpoten</a>';?></li>            
                  <li <?php if($pagina=='podium-leuning') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podium-leuning">Leuningen</a>';?></li>
                  <li <?php if($pagina=='podium-trappen') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podium-trappen">Trappen</a>';?></li>
                  <li <?php if($pagina=='podium-rok') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podium-rok">Afrok</a>';?></li>
                  <li <?php if($pagina=='podium-vloertegels') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'podium-vloertegels">Vloertegels</a>';?></li>
                  <li <?php if($pagina=='accessoires') {?>class="active"<?php } ?>><?php echo '<a href="'.$pagelink.'accessoires">Accessoires</a>';?></li>
                </ul>
              </li>
            </ul>
          </li>
         </ul>
       </div>
      </div>
    </div>
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back