![]() |
|
HTML/CSS help thread - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: HTML/CSS help thread (/Thread-HTML-CSS-help-thread) |
RE: HMTL/CSS help thread - $ninja - 08-06-2015 (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" Fair enough. Just pointing out tha bad grammar =/= bad at coding. RE: HMTL/CSS help thread - Dijkstra - 08-06-2015 (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" I've never stated that. I said it effects his first impressions which it does. RE: HTML/CSS help thread - Captin_Lulzboat - 08-06-2015 Its changed... lol Late night posts and not paying attention to the title... doesnt mean bad coding just means lack of sleep..
RE: HTML/CSS help thread - Typo - 08-25-2015 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-) RE: HTML/CSS help thread - Typo - 09-07-2015 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>RE: HTML/CSS help thread - Dijkstra - 09-07-2015 (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. 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. ![]() (09-07-2015, 03:27 PM)Doge Wrote: Dumping, still looking answer for that search thing. 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;
}RE: HTML/CSS help thread - $ninja - 09-08-2015 (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" No, it really doesn't. RE: HTML/CSS help thread - Dijkstra - 09-08-2015 (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" There is a difference between bad grammar and spelling the name of a language wrong. RE: HTML/CSS help thread - Captin_Lulzboat - 09-08-2015 It was clearly a small typo... It happens... Fast typing and late nights does that to some people. Regardless its been changed and fixed
RE: HTML/CSS help thread - Dijkstra - 09-08-2015 (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 Yeah I understand that. Lol This is an old conversation being dug up. |