-
Image Map Help
Date: 09/04/05
(HTML Help) Keywords: css, html
Hey guys! It's a first post here, so I'll make it short and clear. First off, I am not your complete n00b at coding. I'm half-intermediate in HTML as well as CSS, so all I need help with is basically codes I don't know of. Which brings me to the subject of my post.
Image maps. Love 'em? Hate 'em? Well help me anyway.
There is an icon maker whose name I've forgotten, but she has a banner which in itself contains an image map. She simply added the text in whatever graphic program she uses, and then made links of it. So I have two questions:
How did she do that?
and
How can I find out the co-ordinates of something and in this case how to use it in text?
Eternal love to whoever is able to help me with this. ^_^
Source: http://www.livejournal.com/community/htmlhelp/2136684.html
-
Anyone using Blogger?
Date: 09/06/05
(PHP Community) Keywords: php, html, web
I'm trying to redo my website to php, including my blog. What scripting language are Blogger tags in if not PHP? I see placeholder tags such as < $ BloggerFileName $ > (sans the spaces) and I'm trying to understand it so I can successfully migrate that code from my html page to my new php page, and eventually make my own layout/ template for it. When I tried that and viewed it on my test site it only displayed the code and not the blog entries.
I'm currently thinking of simply including the blogger.html file and not trying to make it a php page.
Any hints or ideas as for deciphering Blogger's code?
Source: http://www.livejournal.com/community/php/341292.html
-
in desperate need of some advice
Date: 09/06/05
(WebDesign) Keywords: html, web
Hi i'm new to this community.. been reading and watching for a while but never posted in here. I am a beginging webdesigner. have a few clients. Right now though I'm working on a site for www.killerkreations.biz .. and here is my dilemma:
I made the www.killerkreations.biz site and design a while ago and wanted to clean it up so i made www.killerkreations.biz/newsitedesign.htm you get an idea if you go there, click on gallery and then trucks.. thats as far as i got. but my client doesn't like it.. says it's "cartoony" which i can understand.He doesn't want the skulls, just some other design (which i am currently trying to think up something cool looking) so i want i make something clean and simple not as busy and all over the place as the original page. I was pretty happy with the new stuff i did.. but i have to change it. i don't think the client even likes the font i used, which i love :)
so my questions: Does anyone have any suggestions on what to do? or any recources they could suggest.. i have some HTML under my belt but i don't know anything else.. and i am trying to learn flash (haha trying). Also, everyone says it's pretty much nessecary that I learn flash.. I want to but am a bit lost on what would be a good program to invest in. so any help there would be awesome too!
also. just your opinions on my work so far would be nice! i don't know any other webdesigners so i could use all the constructive critisim i can get!
Thanks so much
~Danielle
Source: http://www.livejournal.com/community/webdesign/971480.html
-
php, mysql search engine
Date: 09/07/05
(MySQL Communtiy) Keywords: cms, php, mysql, html, sql
Ok, I’m trying to make a nice little search script for my CMS. The whole site is in the db, and I would like to have a way for people to be able to search all the content. Each entry in the db has an id, name, title, description and body. They may all contain html. now I would like to run a query that looks through all the fields (except the id) and pulls out all those that match, then display them in a table (I assume a while loop is fie for this). So what I'm really looking for is an sql query that will search all the fields. Now I would also like it to recognise boolean searches if this is possible.
Ok, I’m sure you get the idea by now. Does anyone know how this might be achieved? Please note, my php knowledge is about a year old and my mysql is very poor. I have also been through mysql docs (mainly this page, but have found it s little beyond me).
Thanks for any help
x-posted to php
Source: http://www.livejournal.com/community/mysql/68021.html
-
zip codes
Date: 09/07/05
(MySQL Communtiy) Keywords: php, mysql, html, database, sql
i'm doing a project where i need to measure distances between zip codes; en route to a solution i stumbled upon a couple of handy resources that i figured i'd pass along:
http://www.zend.com/codex.php?id=1486&single=1
a class used to do various zipcode calculations such as distance and finding the zip codes within range of another zip code
take a look at the class to see how he wants your tables and fields named for the state and zip code database tables
http://www.cfdynamics.com/cfdynamics/zipbase/index.cfm
zipbase - datbase of zip codes with lat & long info, state info, etc. available in a text file and an access datbase
i used the textfile and in mysql said:
mysql> LOAD DATA LOCAL INFILE 'c:/ZIP_CODES.txt'
-> INTO TABLE zip_code
-> FIELDS TERMINATED BY ',' ENCLOSED BY '"'
-> LINES TERMINATED BY '\r\n';
http://27.org/isocountrylist/usps_states_list.sql
SQL file for creating a states table (i believe in the zipcode class, he wants the states table called "state")
i used that to make a silly little app to test some of the features of the class:
$zip){
$field = 'zip'.($key+1);
if(isset($_REQUEST[$field])){
if(is_numeric($_REQUEST[$field])){
$zips[$key] = $_REQUEST[$field];
}
}
}
?>
foreach($zips as $key => $zip){
if($zip){
echo "
";
echo "$zip:";
$details = $zc->get_zip_details($zip);
if(!empty($details)){
foreach($details as $key => $value){
echo "- $key: $value
";
}
}
echo "
";
}
}
?>
if($zips[0] && $zips[1]){
echo "Distance: ".$zc->get_distance($zips[0], $zips[1]);
}
?>
oh, and i found this http://centricle.com/tools/html-entities/ to convert app code into HTML special chars
crossposted in php mysql & bobalien
Source: http://www.livejournal.com/community/mysql/67585.html
-
php, mysql search engine
Date: 09/07/05
(PHP Community) Keywords: cms, php, mysql, html, sql
Ok, I’m trying to make a nice little search script for my CMS. The whole site is in the db, and I would like to have a way for people to be able to search all the content. Each entry in the db has an id, name, title, description and body. They may all contain html. now I would like to run a query that looks through all the fields (except the id) and pulls out all those that match, then display them in a table (I assume a while loop is fie for this). So what I'm really looking for is an sql query that will search all the fields. Now I would also like it to recognise boolean searches if this is possible.
Ok, I’m sure you get the idea by now. Does anyone know how this might be achieved? Please note, my php knowledge is about a year old and my mysql is very poor. I have also been through mysql docs (mainly this page, but have found it s little beyond me).
Thanks for any help
x-posted to mysql
Source: http://www.livejournal.com/community/php/341853.html
-
zip codes
Date: 09/07/05
(PHP Community) Keywords: php, mysql, html, database, sql
i'm doing a project where i need to measure distances between zip codes; en route to a solution i stumbled upon a couple of handy resources that i figured i'd pass along:
http://www.zend.com/codex.php?id=1486&single=1
a class used to do various zipcode calculations such as distance and finding the zip codes within range of another zip code
take a look at the class to see how he wants your tables and fields named for the state and zip code database tables
http://www.cfdynamics.com/cfdynamics/zipbase/index.cfm
zipbase - datbase of zip codes with lat & long info, state info, etc. available in a text file and an access datbase
i used the textfile and in mysql said:
mysql> LOAD DATA LOCAL INFILE 'c:/ZIP_CODES.txt'
-> INTO TABLE zip_code
-> FIELDS TERMINATED BY ',' ENCLOSED BY '"'
-> LINES TERMINATED BY '\r\n';
http://27.org/isocountrylist/usps_states_list.sql
SQL file for creating a states table (i believe in the zipcode class, he wants the states table called "state")
i used that to make a silly little app to test some of the features of the class:
$zip){
$field = 'zip'.($key+1);
if(isset($_REQUEST[$field])){
if(is_numeric($_REQUEST[$field])){
$zips[$key] = $_REQUEST[$field];
}
}
}
?>
foreach($zips as $key => $zip){
if($zip){
echo "
";
echo "$zip:";
$details = $zc->get_zip_details($zip);
if(!empty($details)){
foreach($details as $key => $value){
echo "- $key: $value
";
}
}
echo "
";
}
}
?>
if($zips[0] && $zips[1]){
echo "Distance: ".$zc->get_distance($zips[0], $zips[1]);
}
?>
oh, and i found this http://centricle.com/tools/html-entities/ to convert app code into HTML special chars
crossposted in php mysql & bobalien
Source: http://www.livejournal.com/community/php/341574.html
-
vote on eclipse.org's redesign
Date: 09/08/05
(Web Development) Keywords: html, java
http://www.eclipsezone.com/java/forums/t44832.html
Source: http://www.livejournal.com/community/webdev/242463.html
-
help with tables
Date: 09/10/05
(HTML Help) Keywords: html
This is not really regarding the layout, but more of my userinfo. In the Photobucket HTML Practice, my code turns out like this, but in my userinfo, it turns out like this. Help, please. Thanks a lot.
Source: http://www.livejournal.com/community/htmlhelp/2140411.html
-
Isogame - The Virtual World Based Forum Interface Experiment
Date: 09/11/05
(WebDesign) Keywords: html
I did something kinda weird:
http://zaskoda.blogspot.com/2005/09/isogame-virtual-world-based-forum.html
Source: http://www.livejournal.com/community/webdesign/975514.html
-
Firefox 1.5 Beta Looks Better Than Ever
Date: 09/11/05
(Mozilla) Keywords: software, browser, css, html, asp, java
Recently Steven J. Vaughan-Nichols published on eweek.com his first views pertaining to Firefox 1.5 Beta. The title of his article, hints his impressions on the recently announced software; "1.5 Beta Looks Better than Ever".
However there are some initial problems. One of the main problems with Beta 1, is the incompatibility with the vast majority of existing extensions programs. Extension developers are aware of this problem, so new, 1.5-compatible extensions should be in place well before the final version of 1.5 hits the street some time in November or December. Mozilla will be releasing a list of 1.5-compatible extensions within the week.
Improvements Made to Beta 1:
a) Taking a leaf from Opera browser, works much faster at rendering pages that you have already read.
b) The overall performance of the browser is better. Gecko, the layout and rendering machine behind the browser, has been tightened up and made faster.
c) Easy to get rid of private information with the new Tools/Clear Private Data Command.
d) It is very open-standard friendly. The program comes with support for SV (Scalable Vector Graphics), CSS (Cascade Style Sheets) 2 and 3, (DHTML (Dynamic HTML) and JavaScript 1.6.
As a beta, without any technical support, without support for 1.0x extensions, it should not be used as a replacement for Firefox 1.0x or any other browser. Come December and its final release, it will be a different story.
If you are interested in reading the whole article, kindly click the following link: http://www.eweek.com/article2/0,1895,1857423,00.asp
Regards,
Omar.-
Source: http://www.livejournal.com/community/mozilla/318058.html
-
the css battle wages on...
Date: 09/11/05
(WebDesign) Keywords: browser, html, google
I am officially going out of my mind. This might be a little long, sorry folks. I'm just getting way to frustrated with this. When trial and error & google fail...
I am trying to get a div to position at the bottom of a page. Sounds simple right?
No matter what I try it's not doing what I want it to do. Simple example I have the bottom margin set to 0px. That should work.. shouldn't it?
I've tried bottom: 0 (which gets it to the bottom of the browser window, ok in the simple example.. but the Real Page is longer than that, and makes the image float halfway down the page. (on there it is the copyright image I'm trying to get to the bottom.)
.copyright {
position: absolute;
z-index: 2;
padding: 7px;
bottom: 0px;
}
I've even tried top: 100%, top: auto.. nothing works
Real Page 2 position: absolute is supposed to make that element work independantly from the other elements on the page. If so why is it plopping down below the rest? ( and no matter where in the html I put it it's working around the other divs)
.copyright2 {
position: absolute;
z-index: 2;
padding: 7px;
margin-bottom: 0px;
}
This is probably going to be one of those simple "Do this, dummy" kinda answers, but that's okay.
rar.
Source: http://www.livejournal.com/community/webdesign/975698.html
-
Basic HTML editor
Date: 09/12/05
(Software) Keywords: software, html
Hi folks,
Another one from me :-)
I am after some very simple HTML editing software. Something akin to Notepad, but which has support for and will add basic HTML e.g. bold, underline, italics. As well as this, also has the ability to display the result, ideally in an updated preview pane.
Is there such a thing?
TIA
Source: http://www.livejournal.com/community/software/56152.html
-
Testing stages
Date: 09/13/05
(WebDesign) Keywords: php, mysql, css, html, sql
I'm currently working on a text based RPG that is in the testing an development stages. I'd like to get an opinion on it. Considering it is my first time working with php, mysql, and css. I was always a HTML girl.
http://www.divineillusion.us
Source: http://www.livejournal.com/community/webdesign/976981.html
-
Testing stages
Date: 09/13/05
(Web Development) Keywords: php, mysql, css, html, sql
(Ugh, I updated to the wrong community the first time. Copy/paste baby!)
I'm currently working on a text based RPG that is in the testing an development stages. I'd like to get an opinion on it. Considering it is my first time working with php, mysql, and css. I was always a HTML girl.
http://www.divineillusion.us
Source: http://www.livejournal.com/community/webdev/243364.html
-
Hello!
Date: 09/13/05
(HTML Help) Keywords: html
My names Manda & I'd like some HTML help.
I only know some basic HTML & want to make my Myspace look better [if this commiunity's strictly for LJ help just tell me & I'll delete this entry] so I found what I'd like to do. I'd like to have it look similar to this girls Myspace. I like the boxes around 'jaz is whateva' 'contacting jaz is whateva' etc a whole lot & want to put them in mine. If anyone knows how that would be amazing. I'd have basically the same layout only different colors [I want a light peach & have the border of the boxes in a darker peach color] so any help would be great. Thanks!!
♥
Source: http://www.livejournal.com/community/htmlhelp/2144700.html
-
who?
Date: 09/13/05
(HTML Help) Keywords: html, web
Is there anybody in this community who is really tricky with tables? I'm trying to do that whole rounded image border table thing and I keep getting spaces in between the images and can't for the life of me figure out what I'm doing wrong.
Webpage. View source to check out my html. If you're kind enough to check it out and offer some friendly service i'll adore you forever. ;)
Cheers!
Source: http://www.livejournal.com/community/htmlhelp/2144505.html
-
Justify last centered
Date: 09/14/05
(WebDesign) Keywords: css, html
There's a text option in Photoshop called "Justify last centered" where text is justified except for the last line which is centered (pictured below). Can anyone please tell me if this is possible in CSS/HTML? I appreciate any help.
Source: http://www.livejournal.com/community/webdesign/978194.html
-
Mozilla Firefox 1.0.7 and Mozilla 1.7.12 Release Candidates
Date: 09/15/05
(Mozilla) Keywords: html, security, web
For your information, The Mozilla Quality weblog has announced the availability of Mozilla Firefox 1.0.7 and Mozilla 1.7.12 release candidates. These builds feature several security fixes, including a solution for the IDN link buffer overflow vulnerability. There are also some stability improvements, which should lead to fewer crashes, and fixes for regressions introduced by previous security updates. Testers are asked to check that extensions and themes install correctly, ensure that there are no problems logging into webmail and banking sites and verify that file downloads work correctly.
For more information, kindly click the following link: http://www.mozillazine.org/talkback.html?article=7348
Regards,
Omar.-
Source: http://www.livejournal.com/community/mozilla/320245.html
-
Hey
Date: 09/16/05
(HTML Help) Keywords: html
My names Manda & I'd like some HTML help.
I only know some basic HTML & want to make my Myspace look better [if this commiunity's strictly for LJ help just tell me & I'll delete this entry] so I found what I'd like to do. I'd like to have it look similar to this girls Myspace. I like the boxes around 'jaz is whateva' 'contacting jaz is whateva' etc a whole lot & want to put them in mine. If anyone knows how that would be amazing. I'd have basically the same layout only different colors [I want a light peach & have the border of the boxes in a darker peach color] so any help would be great. Thanks!!
♥
Source: http://www.livejournal.com/community/htmlhelp/2146080.html