Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
Plus I would be a little careful with that. I assume their government monitors outbound traffic to other countrys. So you may unknowling, put him on a watch list. On Fri, May 24, 2019, 10:24 PM Andrew McRobb wrote: > I'm a little behind the riots, but cant he use the Tor browser? -- would > make

Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
I'm a little behind the riots, but cant he use the Tor browser? -- would make life easier for your friend since it does lots of encryption layering using the Tor protocol to give him internet access annoymously. On Fri, May 24, 2019, 7:25 PM Jim wrote: > Thanks for the help. I removed the [type

Re: Help making php display larger

2019-05-24 Thread Jim
Thanks for the help.  I removed the [type=submit] from your example and the buttons are the size I wanted.  So I have this at the beginning. div.a {   font-size: 70px; } input {     font-size: 70px; } I set up this file submit form because of a friend of mine in Indonesia.  Because of  r

Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
Give this website a good read. This was my goto when i first started web developement. Even lets you expirement with stuff on their website! https://www.w3schools.com/css/ On Fri, May 24, 2019, 6:45 PM Andrew McRobb wrote: > Swap that 20px to 70px. Sorry, writting it on phone. > > On Fri, May

Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
Swap that 20px to 70px. Sorry, writting it on phone. On Fri, May 24, 2019, 6:43 PM Andrew McRobb wrote: > That is only going to work for links, not buttons. It would have to look > something like this. > > input[type=submit] { > font-size: 20px; > } > > Notice the select statement, is referi

Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
That is only going to work for links, not buttons. It would have to look something like this. input[type=submit] { font-size: 20px; } Notice the select statement, is refering to any inputs with type submit. On Fri, May 24, 2019, 6:17 PM Jim wrote: > Before any of the code, I put this. > >

Re: Help making php display larger

2019-05-24 Thread Jim
Before any of the code, I put this. div.a {   font-size: 70px; } But only some of the text is bigger. See  for yourself here https://ibb.co/sCZrQjJ --- PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org To subscribe, unsubscribe, or

Re: Help making php display larger

2019-05-24 Thread Jim
I need to find out where to put the added code without breaking the script. On 5/24/19 5:45 PM, Andrew McRobb wrote: PHP has nothing to do with styling, its backend logic. Anything display wise is HTML/CSS. When you understand how those work, it should give a really good idea how to connect all

Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
PHP has nothing to do with styling, its backend logic. Anything display wise is HTML/CSS. When you understand how those work, it should give a really good idea how to connect all 3 together, just to give you some more context. On Fri, May 24, 2019, 5:39 PM Andrew McRobb wrote: > Thats a CSS prob

Re: Help making php display larger

2019-05-24 Thread Andrew McRobb
Thats a CSS problem buddy. Pick up CSS beginner tutorials or a framework like Bulma or Bootstrap. On Fri, May 24, 2019, 5:35 PM Jim wrote: > I've got a php script to enable users to upload files to a server. It > works, but when testing it on my android phone, I saw the text is really > small.

Help making php display larger

2019-05-24 Thread Jim
I've got a php script to enable users to upload files to a server.  It works, but when testing it on my android phone, I saw the text is really small.   How can I make it appear larger on an android device?  Here's the script. thanks     $uploadDir = '/var/www/uploads/'; //path you wish