Jump to content

divinedesigns1

Members
  • Posts

    1,200
  • Joined

  • Last visited

Everything posted by divinedesigns1

  1. hey guys whats good? i have a question, how do i make a textarea to appear when you click a certain button in a contact form? this is my options <select name="services" id="services"><option>footer</option><option>neck</option><option>knee</option><option>eyes</option><option>lips</option></select> so if you click on lips a textarea would appear, how do i do this? i know it have to do with something in php i think it call on the textarea when you click on lips 0.o can i have a few hint or tips?
  2. link me to your website if its up and running and theres no stupid questions, the html code is normally the<html><doc...... ><head><title></title></head><body></body></html> so the html code is those, which can be found in your index.html or .php file
  3. hey sup, i am wondering if its possible to transfer/import a 3D model into flash or do i have to use another kind of method to make it work on a website, i am looking to do something like thishttp://www.jeremylevine.com/ But with my own work etc
  4. alright thank you dsone, trying to take what people say and put it to work
  5. what font would be best to use, so that the viewer doesnt hurt their eyes trying to read the text and background? i was thinking about putting like a black wood like flooring in the background, what you think? www.divinedesigns1.com kindly give your suggestions on the font thank you The site is still being created, it have been like this for a few years now, since i first start learning how to create websites "i am not a graphic designer".
  6. just notice you have a left:-9999px; try changing that also
  7. where you trying to comment out this piece of code with the double / ? #subnav li a {color: #526b91;display: block;font-family: 'Courier New', 'Arial','Sans Serif';font-size: 12px;padding: 8px 18px 6px 18px;position: relative;text-decoration: none;//text-indent: -9999px; if so you might want to do /* text-indent: -9999px; */that prolly the cause of it, let me know if that word and may i see your html for the menu
  8. yes it, i change it to image and it worked perfectly well but yesterday it was working with photo
  9. ok samething that happen the last time, instead of accepting the image which is 65kb it keep on rejecting the image and giving the output "image need to be gif, jpeg or png with a size no more than 65kb but the image is 5.61kb 0.o http://www.divinedesigns1.com/demo/addon.php and this the script "once again just give me a hint if i mess up please and thank you <?phprequire_once 'skimg.php';require_once 'my_connect.php';if (isset($_POST['submit'])) {// Grab the score data from the POST$name = $_POST['name'];$score = $_POST['score'];$screenshot = $_FILES['screenshot']['name'];$screenshot_type = $_FILES['screenshot']['type'];$screenshot_size = $_FILES['screenshot']['size'];if (!empty($name) && !empty($score)) {if((($screenshot_type == 'photos/gif') || ($screenshot_type == 'photos/jpeg') || ($screenshot_type == 'photos/pjpeg') || ($screenshot_type == 'photos/png')) && ($screenshot_size > 0) && ($screenshot_size <= SK_MAXFILESIZE)){if($_FILES['file']['error'] == 0){//Move the file to the target upload folder$target = SK_UPLOADPATH . $screenshot;if(move_uploaded_file($_FILES['screenshot']['tmp_name'], $target)) {// Connect to the database$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);// Write the data to the database$query = "INSERT INTO scorekeeper VALUES (0, NOW(), '$name', '$score', '$screenshot', 0)";mysqli_query($conn, $query);// Confirm success with the userecho '<p>Thanks for adding your new high score!</p>';echo '<p><strong>Name:</strong> ' . $name . '<br />';echo '<strong>Score:</strong> ' . $score . '</p>';echo '<img src="' . SK_UPLOADPATH . $screenshot . '" alt="Score image" /></p>';echo '<p><a href="index.php"><< Back to high scores</a></p>';// Clear the score data to clear the form$name = "";$score = "";$screenshot = "";mysqli_close($conn);}else {echo '<p class="error">Sorry there was a problem uploading your screen shot image</p>';}}}else{echo '<p class="error">The screen shot must be a GIF, JPEG OR PNG image file no' . 'greater than ' . (SK_MAXFILESIZE /1024) . ' KB in size.</p>';}// Try to delete the temporary screen shot image file@unlink ($_FILES['screenshot']['tmp_name']);}else{echo '<p class="error">Please enter all of the information to add your high score.</p>';}}?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data"><input type="hidden" name="MAX_FILE_SIZE" value="<?php echo SK_MAXFILESIZE; ?>" /><label for="name">Name: </label><input type="text" id="name" name="name" value="<?php if(!empty($name)) echo $name; ?>" /><br /><label for="score">Score: </label><input type="text" id="score" name="score" value="<?php if(!empty($score)) echo $score; ?>" /><br /><label for="screenshot">Screen Shot: </label><input type="file" id="screenshot" name="screenshot" /><hr /><input type="submit" value="Add" name="submit" /></form> the image size script <?php//define the upload pathdefine('SK_UPLOADPATH', 'photos/');define('SK_MAXFILESIZE', 65536); // 65 KB?> so the max file size is 65kb and the addon script should accept only files that is 65kb or less but nothing happensi fixed this script before then i got help to fix it again from boen now im having problem again 0.o
  10. oh then nevermind, just email him a headfirst copy
  11. sorry for the late reply, was looking for the topic and i just found it, what i did was create a 32x32 then i took my logo "the one in my display" and scale it down to fix the 32x32 frame, then i use favicon generator and it came out just like i want it to look but im gonna try using your example and see if i like that one better you prolly wondering why this guy have 2 logos for his websites well the first one which is on www.divinedesigns1.com was the very first successful logo i ever created "not including the BELOVED logo" but my girlfriend say it doesnt match the name DDS1 which was sure because if you look at it it look like it was saying SD1 which isnt the name 0.o Satisfy Designs1? doesnt really site well but the logo was looking very hot and still is. i love the work i do so i will be using both logos the new one "my display" on dds1.com and the official one on dds1.net both will be tatted on my skin it means something to me
  12. divinedesigns1

    flv to mp3

    thank you for the explaination boen
  13. Pay attention im only going to do this once, and no one else reply to this post after this, if he cant figure out this after i take my time to do this then hes just not using his brains compare the three, your form names, your php variables and your insert into links names. lets start with the form name FORM NAMES & ID id="Site_Name" name="Site_Name"id="Site_URL" name="Site_URL"id="Description" name="Description" PHP Names$var1 = $_POST['site_name'];$var2 = $_POST['site_url'];$var3 = $_POST['description']; INSERT NAMESINSERT INTO links (Site_Name, Site_URL, Description); Here is a tip everything need to match up or nothing will work, now fix the dam thing, no bullshyt get to it, read it carefully, spell it carefully, match it up carefully even if you have to do it word by word do it no bull###### no one going to help you in this topic, this is the last reply good goodluck you can do it
  14. you send him books and he still aint know shyt?
  15. divinedesigns1

    flv to mp3

    curiousity strikes again - so what would i have to look for, so i can actually sit and see how it is done? or what do i have to learn to actually try and make this possible? wait wasnt this what that guy should of ask? anyway back to my curiousity, so what do i need to learn or what do i need to look up to fine a tutorial on this ? i dont mind sitting here and looking up what every function does at all so
  16. you do a display inline in the list items <li> i did it in the below code from what you provided #subnav li {float: left;list-style-type:none;text-align: center;display:inline; // this make them go in linepadding:5px; // just some padding to separate them you can add as much as you want to suit you} what i did here was play an display:inline; to make the links goes inline "which you didnt ask but yea its morning" by saying display inline all the text goes in an horizontal line blaaah did the wrong thing mannnnn, ok to make it links go to the center do this #subnav {-khtml-border-radius: 0px;-moz-border-radius: 0px;-webkit-border-radius: 0px;border-radius: 0px;clear: both;color: #555;margin: 0 auto 10px;margin-top: -8px;overflow: hidden;text-transform: uppercase;width: 920px;background-image:url(/wp-content/themes/child/images/banner1.png);text-align:center; //thats how i get them to go in the center by aligning the text in the main menu div} so what i did was add text-align:center; to the #subnav div and all the text should jump to the center, it does the same for left and right.hope that helps sorry about the first explain if i still havent answer your question just let me know thanks
  17. then you should listen to people when they try to help you then maybe just maybe it wouldnt be that difficult now would it? and i aint want to hear no bloodclot excuses either
  18. ok i think i figure out a way to make it look decent thanks dsone
  19. cant i just make it myself then call upon it? so then i can see exactly how it looks?
  20. so would it be a little better if i did it with a 32x32?
  21. yea i did google it, its the size of the picture is giving me a hard time, it keep on coming out pixilizes and i would like it to come out clear
  22. thats so true, i did that yesterday and the code stop working hehehehehe
  23. divinedesigns1

    Favicon

    hey sup, i been trying to make a favicon and i had made one once, but i cant remember what i did to make it, or the website i use to make it, if anyone knows how to make one kindly give me a refresher thank you wasnt too sure where to place this so i placed it here, you can remove it if its in the wrong section
×
×
  • Create New...