Login Register


HTML/CSS help thread filter_list
Author
Message
RE: HMTL/CSS help thread #21
(08-06-2015, 06:17 AM)Dijkstra Wrote:
(08-06-2015, 06:15 AM)$ninja Wrote:
(08-06-2015, 04:10 AM)Dijkstra Wrote: Please fix the title of this post. Cringe worthy. "HMTL" Tongue

Not very good as a first impression if you're looking to give help to others. lol

Not a huge deal, really. I know tons of people with horrible grammar who are amazing developers, so...

Yeah, I totally understand. But if you have noticed it, you should be able to just make that 2 second change.

Fair enough. Just pointing out tha bad grammar =/= bad at coding.

Reply

RE: HMTL/CSS help thread #22
(08-06-2015, 06:27 AM)$ninja Wrote:
(08-06-2015, 06:17 AM)Dijkstra Wrote:
(08-06-2015, 06:15 AM)$ninja Wrote:
(08-06-2015, 04:10 AM)Dijkstra Wrote: Please fix the title of this post. Cringe worthy. "HMTL" Tongue

Not very good as a first impression if you're looking to give help to others. lol

Not a huge deal, really. I know tons of people with horrible grammar who are amazing developers, so...

Yeah, I totally understand. But if you have noticed it, you should be able to just make that 2 second change.

Fair enough. Just pointing out tha bad grammar =/= bad at coding.

I've never stated that. I said it effects his first impressions which it does.

Reply

RE: HTML/CSS help thread #23
Its changed... lol Late night posts and not paying attention to the title... doesnt mean bad coding Smile just means lack of sleep..
You mind is programmable – if you’re not programming your mind, someone else will program it for you.

Reply

RE: HTML/CSS help thread #24
How do I do my search engine better? Atm, if some post have "mathematics" for example, it finds it if you put "mathematics" in search box but if you put "math" into that search box it wont work.


Code:
<form action="http://quoteship.uk/search" name="input" method="get"> <input value=" " name="q" size="17" type="text"/> <input value="Search" type="submit"/> </form>


Thanks! B-)
Listen, smile, agree, and then do whatever the fuck you were gonna do anyway.

Reply

RE: HTML/CSS help thread #25
Dumping, still looking answer for that search thing.

Also quick question, how do I center image?
Code:
<!doctype html> <a href="http://supremeforums.com/member.php?action=register&referrer=48"> <img border="0" src="http://i.imgur.com/FB0OHOj.png" width="252" height="31" /> </a> </!doctype>
Listen, smile, agree, and then do whatever the fuck you were gonna do anyway.

Reply

RE: HTML/CSS help thread #26
(08-25-2015, 08:48 PM)Doge Wrote: How do I do my search engine better? Atm, if some post have "mathematics" for example, it finds it if you put "mathematics" in search box but if you put "math" into that search box it wont work.


Code:
<form action="http://quoteship.uk/search" name="input" method="get"> <input value=" " name="q" size="17" type="text"/> <input value="Search" type="submit"/> </form>


Thanks! B-)

If you are using a relational database, your query for searching would be something like this.

Code:
SELECT id FROM posts WHERE title LIKE "math%";

This query would give you results that have math and then something appended to the end of it like math, mathematics, mathabc, etc.
You could also do this...

Code:
SELECT id FROM posts WHERE title LIKE "%math%";

This query would give you similar results but now it will search for words/letters inserted in front of "math" too.

EDIT: If this isn't smart enough searching for you, I would suggest looking into implementing fuzzy search. Smile

(09-07-2015, 03:27 PM)Doge Wrote: Dumping, still looking answer for that search thing.

Also quick question, how do I center image?
Code:
<!doctype html> <a href="http://supremeforums.com/member.php?action=register&referrer=48"> <img border="0" src="http://i.imgur.com/FB0OHOj.png" width="252" height="31" /> </a> </!doctype>

If you want to center it relative to its parent's width horizontally, use css similar to this:

Code:
a { position: relative; margin: 0 auto; }

Reply

RE: HTML/CSS help thread #27
(08-06-2015, 06:27 AM)Dijkstra Wrote:
(08-06-2015, 06:27 AM)$ninja Wrote:
(08-06-2015, 06:17 AM)Dijkstra Wrote:
(08-06-2015, 06:15 AM)$ninja Wrote:
(08-06-2015, 04:10 AM)Dijkstra Wrote: Please fix the title of this post. Cringe worthy. "HMTL" Tongue

Not very good as a first impression if you're looking to give help to others. lol

Not a huge deal, really. I know tons of people with horrible grammar who are amazing developers, so...

Yeah, I totally understand. But if you have noticed it, you should be able to just make that 2 second change.

Fair enough. Just pointing out tha bad grammar =/= bad at coding.

I've never stated that. I said it effects his first impressions which it does.

No, it really doesn't.

Reply

RE: HTML/CSS help thread #28
(09-08-2015, 04:10 AM)$ninja Wrote:
(08-06-2015, 06:27 AM)Dijkstra Wrote:
(08-06-2015, 06:27 AM)$ninja Wrote:
(08-06-2015, 06:17 AM)Dijkstra Wrote:
(08-06-2015, 06:15 AM)$ninja Wrote:
(08-06-2015, 04:10 AM)Dijkstra Wrote: Please fix the title of this post. Cringe worthy. "HMTL" Tongue

Not very good as a first impression if you're looking to give help to others. lol

Not a huge deal, really. I know tons of people with horrible grammar who are amazing developers, so...

Yeah, I totally understand. But if you have noticed it, you should be able to just make that 2 second change.

Fair enough. Just pointing out tha bad grammar =/= bad at coding.

I've never stated that. I said it effects his first impressions which it does.

No, it really doesn't.

There is a difference between bad grammar and spelling the name of a language wrong.

Reply

RE: HTML/CSS help thread #29
It was clearly a small typo... It happens... Fast typing and late nights does that to some people. Regardless its been changed and fixed Smile
You mind is programmable – if you’re not programming your mind, someone else will program it for you.

Reply

RE: HTML/CSS help thread #30
(09-08-2015, 02:13 PM)Captin_Lulzboat Wrote: It was clearly a small typo... It happens... Fast typing and late nights does that to some people. Regardless its been changed and fixed Smile

Yeah I understand that. Lol
This is an old conversation being dug up.

Reply







Users browsing this thread: 1 Guest(s)