Hi Sikho I am enjoying your tutorials very much. I am a complete newbie to Drupal and you make it very easy to understand. Sometimes I have to rewind and replay but the information is all there. Thanks again Gavin😊
@sikhoaursikhateraho5053 Жыл бұрын
Happy to hear 😊 Gavin, that you are enjoying the tutorials.
@biswadipdasgupta42046 ай бұрын
Thank you ma'am excellent explanation! 👏 How do I make the menu so the submenu only shows up when I hover over the menu item? Thank you.
@sikhoaursikhateraho50536 ай бұрын
You're welcome!😊 To make the submenu appear only on hover, follow these steps: 1) Edit the Menu: Go to Structure > Menus and select the menu you want to edit. 2)Add CSS: In your theme's CSS file, add the following code. 3)Save and Clear Cache: Save your changes and clear the Drupal cache to see the effect. This will make the submenu appear on hover.
@biswadipdasgupta42046 ай бұрын
@@sikhoaursikhateraho5053 thank you ma'am. In step 2, am I missing "the following code" which I am supposed to add?
@sikhoaursikhateraho50536 ай бұрын
Welcome!!! Please find the CSS Code for ur reference below .menu-item-has-children ul { display: none; } .menu-item-has-children:hover ul { display: block; }
@biswadipdasgupta42046 ай бұрын
@@sikhoaursikhateraho5053 thank you so much! 🙏
@phanom5575 ай бұрын
thank you for the explanation
@sikhoaursikhateraho50533 ай бұрын
You are welcome!
@sutthonabanni19988 ай бұрын
Well explained mam. But what if we want to customize the site using code. How can we do that. Eg: to change the body background color
@sikhoaursikhateraho50537 ай бұрын
Thanks for watching! To customize your site using code, you can utilize Drupal's theming system. You'll need to create or modify a theme and then add CSS to change elements like the body background color. If you need further guidance, let me know!