HTML Navigation Menu Alignment Issue Programming Web Development by khan zain "I'm working on a navigation menu for my HTML page, but it's not behaving as expected. The links aren't aligning properly, and the styling seems a bit wonky. I've included the code below. Can anyone help me figure out what's causing this navigation headache? This my Code <!DOCTYPE html> <html lang="&… HTML Image Embedding Issue Programming Web Development by khan zain "I'm attempting to embed an image in my HTML page, but it's not showing up. I've checked the file path, and it seems correct. Below is the code I'm using. Any insights on why the image isn't displaying as expected?"" <!DOCTYPE html> <html lang=""en""> <head> <meta… Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Dani You have the itemtype set to a VideoObject but, as you point out, only sometimes is there actually an .mp4 file. The rest of the time, it's a static image such as a png, jpg, or jpeg. Google probably doesn't trust your meta tags since they are inaccurate half the time. Re: This is me venting Community Center Meta DaniWeb by Reverend Jim Also, in non-computing over the years I have heard comments like "if only I hadn't stopped for coffee I would have missed that accident, or several other variations. The thing is you never know what would have happened if you had made different decisions. Certainly making a different decision may have resulted in things being better. Or they … Re: This is me venting Community Center Meta DaniWeb by jkon Dani , yes I also believe that you are responsible for the decline of DaniWeb .... BUUUT that was many years ago. We all foreseen the decline of "forums" back in early 2010's , there were many alternatives of what to do , and I strongly believe that you choose the wrong one. I will not repeat what you did or what you could be done … Re: This is me venting Community Center Meta DaniWeb by Dani > what was missing was a programming hub of news / forum / interviews I have always been a strong proponent of having editorial (news, tutorials, interviews, etc.) complement the user-generated forum discussions. In the past, well over 50% of our gross revenue from advertising went straight into paying for staff writers. IMHO we used to have … sequential file save read option button Programming Software Development by arcon I think I can record but I can't read with the option button checkbox I don't know if I do the recording procedure correctly Re: sequential file save read option button Programming Software Development by rproffitt 1. With so few having VB6 now, you need to move to a current release. Help will be hard to find. 2. I can't load up your project. Few others can so by not posting the relevant code in the clear with your assessment, you see the issue? 3. VB6, while I coded very large projects long ago, "It's Dead Jim." That is, you're on a deserted … Re: sequential file save read option button Programming Software Development by Reverend Jim Yes. People continue to ask about VB6. They shouldn't. And you likely won't see anyone answering questions about, for example, COBOL or QuickBASIC, except in a historical context. The only VB6 question that should be asked is "why are you still using it?" Re: sequential file save read option button Programming Software Development by rproffitt I noted the issues with your post and the problems with what is a dead system. While I do have one last VB6 dev laptop in storage I only pull it out for paid work. And at 250USD a hour the only company that pays is very careful about their requests. You ignored how such problems are presented. ZIP file? Too dangerous today. You could have … Re: sequential file save read option button Programming Software Development by SCBWV I don't understand a few things. There are option buttons and there are check boxes. So I don't know what you mean by "option button checkbox." I also don't know what you mean by "record." Do you mean print? Read values from a file? I would suggest instead of checking for "1" that you use "If chkExtra(0).Value … Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by jkon Growing up in the 80's in an environment where nerds where literally punished I developed lots of skills to sugarcoat the fact that I had a computer , I was coding and I liked math. Most of them were various martial arts. Now in my late 40's I still enjoy physical activities , but more like running or swimming when my lateral epicondylitis let me … Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim Odd that something so basic and obvious needs to be named. Of course, "Pomodoro Technique" is a lot shorter than "go hide in the server room so my boss won't keep interrupting me so I can get some work done" technique. At least that's what I used to call it. Re: Eero plus vs NextDNS Hardware and Software by rproffitt Why either? https://www.reddit.com/r/eero/comments/tv39ig/eero_secure_vs_nextdns/ kicks it around and I can't see why to use either. Re: Eero plus vs NextDNS Hardware and Software by rproffitt HTTPS and DNS? Why not use the Brave browser then? Too much to type about that here so read how to set up at https://www.reddit.com/r/brave_browser/comments/ucx1jp/most_secure_dns/ Then again, why aren't you using a VPN and calling it a day? Re: sequential file save read option button Programming Software Development by arcon Sorry but you have not given a solution to the issue, because I see that here in this forum people continue to ask about vb6.0 Re: sequential file save read option button Programming Software Development by arcon because it still works and there are many people who use it, thank you Re: sequential file save read option button Programming Software Development by arcon because it still works and there are many people who use it, thank you Re: sequential file save read option button Programming Software Development by arcon thanks for everything Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by pritaeas Probably the most unexpected (for a die-hard old-fashioned technical programmer) would be Reiki. I feel like since I've been doing this, my master has introduced me into so many things that appear to have been missing from my life. So much is falling into place now, and I have a very different (and better) view of my life now. Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by toneewa With "Tennis Elbow", it’s the tendons that connect these muscles to the bones that are primarily affected by this condition. Tendons, which connect muscles to bones, are primarily composed of collagen, a protein that requires several key nutrients for its formation and function. Vitamin A: It can help enhance collagen development. … Re: How to query database using variable and get all results not just one row Programming Web Development by Chris_103 To retrieve all records associated with the current user, you can use the fetchAll() method instead of fetch(). Here's how you can modify your code: ```php // Query database to retrieve records associated with the user $sql = "SELECT * FROM table_name WHERE variable_name = :variable_name"; $stmt = $conn->prepare($sql); $stmt->… Re: How to query database using variable and get all results not just one row Programming Web Development by Biiim logically, it would be because `WHERE variable_name = :variable_name` matches 1 row in your table maybe try a `var_dump(str_replace(':variable_name',"'some_value'",$sql));var_dump($records);`? run the sql on whichever way you use to access your DB directly I don't use PDO so i'm not too familiar on how it returns results, either … Paris Olympics Chatbot- Get Ticket Information Using Chat-GPT and LangChain Programming Computer Science by usmanmalik57 I was searching for Paris Olympics ticket prices for tennis games recently. The official website directs you to a [PDF document](https://tickets.paris2024.org/obj/media/FR-Paris2024/ticket-prices.pdf) containing ticket prices and venues for all the games. However, I found the PDF document to be very hard to navigate. To make things easier, I … Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 Hello, it is unneccessarily to use right movex or leftmovex , because it is to much variables. You should to use one variable movex to make it with minus or plus sign in your update function; by pressing left or right keys; because the one thing which is changable is a picture; I mean in global sense; variables like leftx, right x should be one… Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Read a Book Hello everyone, i am not able to fix this issue in the Search Console `Video is not the main content of the page` but actually it is! When you enter in my product page the first thing that appears is the video it self! (hosted on imgur platform) I even added additional Schema video tags but that seems is useless. here is the code i am … Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim >Gone are the days That's pretty much the case for everything. I remember when TV sucked all through summer vacation and I couldn't wait for the end of September for the new seasons to start. Of course it was bittersweet because September also meant back to school. I'll mention a few more things that may have been mentioned before but I … Re: Improve HAVING BY performance Programming Databases by Biiim > I don't have experience with MariaDB, but in MySQL, something like that will work as long as I do SELECT sum(points) AS total FROM ... HAVING total > 10. Is that what you were getting at? Kind of, MariaDB is a fork of MySQL from around 2009 or something like that, MySQL 5.* and the creator continued developing MariaDB and Oracle took … 'Prepare for the Earliest Possible AGI Deployment Scenario' Community Center by Johannes C. **Despite the uncertain timeline for Artificial General Intelligence (AGI) becoming a reality, we need to assure responsible and ethical development today – says Jen Rosiere Reynolds.** ![header-agi-talks1.png](https://static.daniweb.com/attachments/4/5595ff2ec36fde155011d21ea73dcd78.png) As part of our new **AGI Talks**, experts from … Re: Improve HAVING BY performance Programming Databases by Biiim > INSERT INTO electronics.products(ProductID, ProductName, Price) VALUES ('1','capacitors', 2.50), ('2','resistors', 4.50), ('3','rectifiers', 7.50), ('4','diodes', 10.00), ('5','ICs', 25.00), ... ('50000','...', ...); I don't see any mention of an index on it & your benchmark indicates you don't have one: ALTER TABLE `…