Re: Bootstrap drop down menu not clickable.

2020-05-17 Thread Miracle
Have you tried the same drop down menu code in a plain html file? Without django involved. Just create a html file, put the menu code and boostrap code and test if it works in the first place. This issue might be the dropdown configuration. On Sun, 17 May 2020, 10:49 am Miracle, wrote: > Hey

Re: Bootstrap drop down menu not clickable.

2020-05-17 Thread Miracle
Hey Sunday, Please check this... https://stackoverflow.com/a/61849839/11000813 On Sun, 17 May 2020, 10:28 am sunday honesty, wrote: > Thanks for replying... > I just downloaded it now following the guide on the doc you sent me. > I have added it to my installed app and requirements.txt. > I

Re: Bootstrap drop down menu not clickable.

2020-05-17 Thread Kasper Laudrup
Hi Sunday, On 17/05/2020 11.27, sunday honesty wrote: Thanks for replying... I just downloaded it now following the guide on the doc you sent me. I have added it to my installed app and requirements.txt. I loaded it at the top of my template and it didn't work. I then included it in the {%

Re: Bootstrap drop down menu not clickable.

2020-05-17 Thread sunday honesty
Thanks for replying... I just downloaded it now following the guide on the doc you sent me. I have added it to my installed app and requirements.txt. I loaded it at the top of my template and it didn't work. I then included it in the {% block content %} as suggested by a member here yesterday, yet

Re: Bootstrap drop down menu not clickable.

2020-05-17 Thread Kasper Laudrup
Hi Sunday On 17/05/2020 08.33, sunday honesty wrote: That's what I did... But the question is do I need to download django-bootstrap with pip before I can use compiled bootstrap I have downloaded? Isn't django-bootstrap different from bootstrap? The compiled bootstrap you have downloaded

Re: Bootstrap drop down menu not clickable.

2020-05-17 Thread sunday honesty
That's what I did... But the question is do I need to download django-bootstrap with pip before I can use compiled bootstrap I have downloaded? Isn't django-bootstrap different from bootstrap? On Sun, May 17, 2020, 2:49 AM Clive Bruton wrote: > > On 16 May 2020, at 15:43, sunday honesty wrote:

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread Clive Bruton
On 16 May 2020, at 15:43, sunday honesty wrote: I included it to installed app and got an error message on the console. "Module not found, no module named bootstrap 4" "bootstrap4" -- Clive -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread Simon A
Not quite sure on that. Usually what I do is the process that you just mentioned and what we did earlier for all the packages that I use. On Sat, May 16, 2020, 23:10 sunday honesty wrote: > I saw "pip install django-bootstrap4" > > After installing, I should load bootstrap > Then I could add

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread sunday honesty
I saw "pip install django-bootstrap4" After installing, I should load bootstrap Then I could add bootstrap form. Other tutorials I have seen don't require downloading bootstrap since I have doneloaded the compiled bootstrap and added it to the static folder of my Django project. If really I must

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread sunday honesty
All right On Sat, May 16, 2020, 3:49 PM Simon A wrote: > Try to run the pip install command if you havent already. Check the > correct command to install bootstrap3 or 4 if forgot the complete package > name. > > On Sat, May 16, 2020, 22:45 sunday honesty > wrote: > >> I included it to

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread Simon A
Try to run the pip install command if you havent already. Check the correct command to install bootstrap3 or 4 if forgot the complete package name. On Sat, May 16, 2020, 22:45 sunday honesty wrote: > I included it to installed app and got an error message on the console. > "Module not found, no

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread sunday honesty
I included it to installed app and got an error message on the console. "Module not found, no module named bootstrap 4" On Sat, May 16, 2020, 3:31 PM Clive Bruton wrote: > > On 16 May 2020, at 15:03, sunday honesty wrote: > > > I did that and got a TemplateSyntaxError stating that bootstrap4 is

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread Clive Bruton
On 16 May 2020, at 15:03, sunday honesty wrote: I did that and got a TemplateSyntaxError stating that bootstrap4 is not a registered tag library Did you put it in your installed_apps? -- Clive -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Bootstrap drop down menu not clickable.

2020-05-16 Thread Simon A
Is it in you installed apps? On Sat, May 16, 2020, 22:04 sunday honesty wrote: > I did that and got a TemplateSyntaxError stating that bootstrap4 is not a > registered tag library > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Django users"

Bootstrap drop down menu not clickable.

2020-05-16 Thread sunday honesty
I did that and got a TemplateSyntaxError stating that bootstrap4 is not a registered tag library -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Bootstrap drop down menu not clickable.

2020-05-16 Thread Simon A
Try to include the dependencies inside the block content. Here is what I did {% block content %} {% load bootstrap3 %} {% bootstrap_css %} {% bootstrap_javascript %} -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Bootstrap drop down menu not clickable.

2020-05-15 Thread sunday honesty
This is my first question here. I hope I find answer. Am happy to be with you guys. I am beginner and have been stucked with this issue for about two weeks now. Because I don't have good network access here, I decided to download and include Bootstrap source file in the static folder of my