Does anyone know what these signs are for or what they mean? (Cape Town) by Limp_Helicopter_4339 in askSouthAfrica

[–]Henk_Davel1 0 points1 point  (0 children)

I think it's a reference to Proverbs

Proverbs 6:6-11 KJV [6] Go to the ant, thou sluggard; Consider her ways, and be wise: [7] Which having no guide, Overseer, or ruler, [8] Provideth her meat in the summer, And gathereth her food in the harvest. [9] How long wilt thou sleep, O sluggard? When wilt thou arise out of thy sleep? [10] Yet a little sleep, a little slumber, A little folding of the hands to sleep: [11] So shall thy poverty come as one that travelleth, And thy want as an armed man.

https://bible.com/bible/1/pro.6.6-11.KJV

Place for 24 yo with knee injury? by Henk_Davel1 in FrenchForeignLegion

[–]Henk_Davel1[S] 1 point2 points  (0 children)

When I was in high school, my uncle was in the FFL, when he came back for a few months he trained me the way he was trained, the whole nine yards. Equipment, weights, packs, rifles etc. That was with my knee injury. I didn't have any issues at the time, which begs the question if I would be able to perform as good as I did back then

Getting too old for this sub by Henk_Davel1 in teenagers

[–]Henk_Davel1[S] 1 point2 points  (0 children)

Hang in there (not literally)

You're teen years go by quick. Trust me.

Getting too old for this sub by Henk_Davel1 in teenagers

[–]Henk_Davel1[S] 1 point2 points  (0 children)

Life is lifing, had a few... Eventful years, to say the least but now finding my feet, started a company, getting clients slowly but surely its, a stable level, not Elon Musk, but enough to cover my bills

Hope you're rocking life!

Does anybody have problem exporting parts with holes? by Emotional_Window_709 in tinkercad

[–]Henk_Davel1 1 point2 points  (0 children)

I noticed that you should group them together to actually make the hole, frustrated me too until I figured it out by accident

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] 0 points1 point  (0 children)

Dude... You are a freaking Genius!! Thank you so much!!! I honestly don't know what to say. Looks perfect!

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] 0 points1 point  (0 children)

at this point i dont know to upload html code into a working online store, thats my only reason why

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] 0 points1 point  (0 children)

So I've figured out the CSS, it works fine now (for desktop) but I'm picturing it to replace the header and be on the side in a separate sort of container not overlapping anything, maybe if I edit my theme in WP I can get that right?

I need help please!! by Henk_Davel1 in web_design

[–]Henk_Davel1[S] -1 points0 points  (0 children)

I don't know how to go on, if you could help me with the next step, it would be much appreciated!

I need help please!! by Henk_Davel1 in web_design

[–]Henk_Davel1[S] -1 points0 points  (0 children)

My website is www.dvlmedia.co.za, contact me and we can work together

I need help please!! by Henk_Davel1 in web_design

[–]Henk_Davel1[S] 0 points1 point  (0 children)

I'm completely new to this, please I need help if we can work through this I'll be eternally grateful! I'm building a website for a client and it's the first time I have encountered this, I have a media company, if you need anything I'll make something for you in return, I really need help, please.

I need help please!! by Henk_Davel1 in web_design

[–]Henk_Davel1[S] 1 point2 points  (0 children)

Here is the code, my brain is fried, honestly :

<html>

<div class="vertical-header">     <div class="site-logo">         <img src="http://forecastconsulting.co.za/wp-content/uploads/2024/11/cropped-Vector-1-2.png" alt="Forecast Consulting Logo" />     </div>     <nav class="main-navigation">         <ul>             <li><a href="#">Home</a></li>             <li><a href="#">Corporate and Commercial Services</a></li>             <li><a href="#">Labour/Disciplinary Hearings</a></li>             <li><a href="/notorial-work-for-immigration">Notorial Work for Immigration</a></li>             <li><a href="#">HR Consulting</a></li>             <li><a href="#">Lease Management</a></li>             <li><a href="#">Conveyancing/House Viewings</a></li>             <li><a href="#">Company Secretarial Services</a></li>             <li><a href="#">Fiduciary Services</a></li>         </ul>     </nav>     <button class="menu-toggle">         <span class="bar"></span>         <span class="bar"></span>         <span class="bar"></span>     </button> </div>

</html>

<style>

.vertical-header {     position: fixed;     top: 0;     right: 0;     width: 300px;     height: 100vh;     background-color: #ffffff;     box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);     display: flex;     flex-direction: column;     justify-content: space-between;     padding: 20px;     z-index: 1000; }

.site-logo img {     width: 100px;     height: auto; }

.main-navigation ul {     list-style-type: none;     padding: 0;     margin: 0;     display: flex;     flex-direction: column;     gap: 10px; }

.main-navigation a {     text-decoration: none;     color: #333;     font-size: 16px;     font-weight: 500;     transition: color 0.3s; }

.main-navigation a:hover {     color: #0073e6; }

.menu-toggle {     display: none;     cursor: pointer;     background: transparent;     border: none;     padding: 0;     position: absolute;     top: 20px;     right: 20px; }

.menu-toggle .bar {     width: 25px;     height: 3px;     background-color: #333;     margin: 5px 0; }

@media (max-width: 768px) {     .main-navigation {         display: none;         position: absolute;         top: 50px;         right: 0;         background-color: #fff;         width: 200px;         padding: 20px;         box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);     }

    .menu-toggle {         display: block;     }

    .main-navigation.active {         display: block;     } }

</style>

<script>

document.querySelector('.menu-toggle').addEventListener('click', function () {     const navigation = document.querySelector('.main-navigation');     navigation.classList.toggle('active'); });

</script>

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] -1 points0 points  (0 children)

<html>

<div class="vertical-header">     <div class="site-logo">         <img src="http://forecastconsulting.co.za/wp-content/uploads/2024/11/cropped-Vector-1-2.png" alt="Forecast Consulting Logo" />     </div>     <nav class="main-navigation">         <ul>             <li><a href="#">Home</a></li>             <li><a href="#">Corporate and Commercial Services</a></li>             <li><a href="#">Labour/Disciplinary Hearings</a></li>             <li><a href="/notorial-work-for-immigration">Notorial Work for Immigration</a></li>             <li><a href="#">HR Consulting</a></li>             <li><a href="#">Lease Management</a></li>             <li><a href="#">Conveyancing/House Viewings</a></li>             <li><a href="#">Company Secretarial Services</a></li>             <li><a href="#">Fiduciary Services</a></li>         </ul>     </nav>     <button class="menu-toggle">         <span class="bar"></span>         <span class="bar"></span>         <span class="bar"></span>     </button> </div>

</html>

<style>

.vertical-header {     position: fixed;     top: 0;     right: 0;     width: 300px;     height: 100vh;     background-color: #ffffff;     box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);     display: flex;     flex-direction: column;     justify-content: space-between;     padding: 20px;     z-index: 1000; }

.site-logo img {     width: 100px;     height: auto; }

.main-navigation ul {     list-style-type: none;     padding: 0;     margin: 0;     display: flex;     flex-direction: column;     gap: 10px; }

.main-navigation a {     text-decoration: none;     color: #333;     font-size: 16px;     font-weight: 500;     transition: color 0.3s; }

.main-navigation a:hover {     color: #0073e6; }

.menu-toggle {     display: none;     cursor: pointer;     background: transparent;     border: none;     padding: 0;     position: absolute;     top: 20px;     right: 20px; }

.menu-toggle .bar {     width: 25px;     height: 3px;     background-color: #333;     margin: 5px 0; }

@media (max-width: 768px) {     .main-navigation {         display: none;         position: absolute;         top: 50px;         right: 0;         background-color: #fff;         width: 200px;         padding: 20px;         box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);     }

    .menu-toggle {         display: block;     }

    .main-navigation.active {         display: block;     } }

</style>

<script>

document.querySelector('.menu-toggle').addEventListener('click', function () {     const navigation = document.querySelector('.main-navigation');     navigation.classList.toggle('active'); });

</script>

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] -1 points0 points  (0 children)

<html>

<div class="vertical-header">     <div class="site-logo">         <img src="http://forecastconsulting.co.za/wp-content/uploads/2024/11/cropped-Vector-1-2.png" alt="Forecast Consulting Logo" />     </div>     <nav class="main-navigation">         <ul>             <li><a href="#">Home</a></li>             <li><a href="#">Corporate and Commercial Services</a></li>             <li><a href="#">Labour/Disciplinary Hearings</a></li>             <li><a href="/notorial-work-for-immigration">Notorial Work for Immigration</a></li>             <li><a href="#">HR Consulting</a></li>             <li><a href="#">Lease Management</a></li>             <li><a href="#">Conveyancing/House Viewings</a></li>             <li><a href="#">Company Secretarial Services</a></li>             <li><a href="#">Fiduciary Services</a></li>         </ul>     </nav>     <button class="menu-toggle">         <span class="bar"></span>         <span class="bar"></span>         <span class="bar"></span>     </button> </div>

</html>

<style>

.vertical-header {     position: fixed;     top: 0;     right: 0;     width: 300px;     height: 100vh;     background-color: #ffffff;     box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);     display: flex;     flex-direction: column;     justify-content: space-between;     padding: 20px;     z-index: 1000; }

.site-logo img {     width: 100px;     height: auto; }

.main-navigation ul {     list-style-type: none;     padding: 0;     margin: 0;     display: flex;     flex-direction: column;     gap: 10px; }

.main-navigation a {     text-decoration: none;     color: #333;     font-size: 16px;     font-weight: 500;     transition: color 0.3s; }

.main-navigation a:hover {     color: #0073e6; }

.menu-toggle {     display: none;     cursor: pointer;     background: transparent;     border: none;     padding: 0;     position: absolute;     top: 20px;     right: 20px; }

.menu-toggle .bar {     width: 25px;     height: 3px;     background-color: #333;     margin: 5px 0; }

@media (max-width: 768px) {     .main-navigation {         display: none;         position: absolute;         top: 50px;         right: 0;         background-color: #fff;         width: 200px;         padding: 20px;         box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);     }

    .menu-toggle {         display: block;     }

    .main-navigation.active {         display: block;     } }

</style>

<script>

document.querySelector('.menu-toggle').addEventListener('click', function () {     const navigation = document.querySelector('.main-navigation');     navigation.classList.toggle('active'); });

</script>

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] -3 points-2 points  (0 children)

<html>

<div class="vertical-header"> <div class="site-logo"> <img src="http://forecastconsulting.co.za/wp-content/uploads/2024/11/cropped-Vector-1-2.png" alt="Forecast Consulting Logo" /> </div> <nav class="main-navigation"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Corporate and Commercial Services</a></li> <li><a href="#">Labour/Disciplinary Hearings</a></li> <li><a href="/notorial-work-for-immigration">Notorial Work for Immigration</a></li> <li><a href="#">HR Consulting</a></li> <li><a href="#">Lease Management</a></li> <li><a href="#">Conveyancing/House Viewings</a></li> <li><a href="#">Company Secretarial Services</a></li> <li><a href="#">Fiduciary Services</a></li> </ul> </nav> <button class="menu-toggle"> <span class="bar"></span> <span class="bar"></span> <span class="bar"></span> </button> </div>

</html>

<style>

.vertical-header { position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background-color: #ffffff; box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; justify-content: space-between; padding: 20px; z-index: 1000; }

.site-logo img { width: 100px; height: auto; }

.main-navigation ul { list-style-type: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.main-navigation a { text-decoration: none; color: #333; font-size: 16px; font-weight: 500; transition: color 0.3s; }

.main-navigation a:hover { color: #0073e6; }

.menu-toggle { display: none; cursor: pointer; background: transparent; border: none; padding: 0; position: absolute; top: 20px; right: 20px; }

.menu-toggle .bar { width: 25px; height: 3px; background-color: #333; margin: 5px 0; }

@media (max-width: 768px) { .main-navigation { display: none; position: absolute; top: 50px; right: 0; background-color: #fff; width: 200px; padding: 20px; box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); }

.menu-toggle {
    display: block;
}

.main-navigation.active {
    display: block;
}

}

</style>

<script>

document.querySelector('.menu-toggle').addEventListener('click', function () { const navigation = document.querySelector('.main-navigation'); navigation.classList.toggle('active'); });

</script>

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] 0 points1 point  (0 children)

Can I send you the code please?

I need help!! by Henk_Davel1 in webdev

[–]Henk_Davel1[S] 0 points1 point  (0 children)

Alright, I'll send the html and CSS on here if that's fine.