Jump to content

eduard

Members
  • Posts

    2,375
  • Joined

  • Last visited

Posts posted by eduard

  1. How do I change the logo of LinkedIn of my website: eduardlid.web44.net which now is a CSS element into a CSS3 element (transform)? HTML: <!DOCTYPE html> <html><head> <meta http-equiv="content-type" content="text/ html; charset=UTF-8"> <title>Eduard Lid</title> <link rel="stylesheet" type="text/css" href="ex1.css"> </head><body> <div id="container"> <ul id="links"> <li><a href="american.html">more</a></li> <li><a href="spanish.html">más</a></li> </ul> <ul id="flags"> <li><a href="#">us<span id="amer"></span></a></li> <li><a href="#">es<span id="spanish"></span></a></li> <li><a href="#">d<span id="germ"></span></a></li> <li><a href="#">nl<span id="dutc"></span></a></li> <li><a href="#">f<span id="fren"></span></a></li></ul> <p id="work">looking for work</p> <p id="trabajo">busca trabajo</p> <div id="main"> <img id="eduard" src="eduard.JPG" alt="img Eduard Lid"> <img id="waterfall" src="waterfall-10.gif" alt="waterfall animation"> <iframe id="video" src="http://www.youtube.com/embed/p8QFOBiWvns" frameborder="0"></iframe> <p id="p1">Web designer<br>Translator<br>Writer</p> <p id="p2">Diseñador de sitios web<br>Traductor<br>Escritor</p> </div><!-- end #main --> <p id="name">Eduard Lid<span id="copyright">Copyright © 2012</span></p> <a href="http://ar.linkedin.com/in/eduardlid"> <img src="http://www.linkedin.com/img/webpromo/btn_viewmy_120x33_es_ES.png?locale=" width="120" height="33" border="0" alt="Ver el perfil de Eduard Lid en LinkedIn" /* Rotate div */ </a> </div><!-- end #container --> </body></html>

  2. Well, first of all, your current website is very simple. You don't even really use ordinary CSS features as much as you should. You don't even use a background image or a banner or a proper CSS menu. Try improving that before diving into new material. I see now that you do have an animated gif, but the animation is barely noticeable. And what is the topic of your webpage? Web design?
    Ok, thanks!
  3. How do I get the height of my first div the same as the third div of my website www.eduardlid.web44.net? CSS: * { margin:0; padding:0; list-style-type:none; }body{ font:bold 18px arial,geneva,SunSans-Regular,sans-serif; background-color:#6495ed; }#container { min-width:966px; }#links { float:left; padding:10px 0 0 100px; font-size:12px; }#links li { margin-bottom:5px; } #links a { color:#000; } #links a:hover { color:#696969; }#flags { float:right; width:256px; height:20px; margin:10px 0px; } #flags li { position:relative; float:left; width:24px; margin:0 2px; font-size:8%; font-weight:normal; } #flags a,#flags span { position:relative; display:block; width:20px; line-height:2px; font-size:0%; font-weight:normal; } #flags span { position:absolute; top:0; left:0; width:-6px; height:24px; background-position:0 -2px; } #flags span:hover { box-shadow:#eef 0 0 0px; } #amer { background-image:url(americanflag.gif); } #spanish { background-image:url(spanishflag.gif); } #germ { background-image:url(germanflag.gif); } #dutc { background-image:url(dutchflag.gif); } #fren { background-image:url(frenchflag.gif); }#looking { min-width:958px; }#work { clear:both; float:left; margin:10px 0 10px 303px; font-size:100%; color:#fff; } #trabajo { float:right; margin:10px 303px 10px 0; font-size:100%; color:#fff; }#main { clear:both; position:relative; height:380px; background-color:#fffff0; border:4px solid #808080; }#eduard { float:left; width:285px; border-right:4px solid #808080; }#waterfall{ float:right; width:285px; border-left:4px solid #808080; }#video { display:block; width:380px; height:280px; margin:20px auto;box-shadow:5px 5px 5px #999; }#p1 { position:absolute; width:125px; font-size:90%; left:299px; bottom:10px; }#p2 { position:absolute; width:190px; font-size:90%; right:299px; bottom:10px; } #p3 { position:absolute; width:190px; font-size:90%; right:299px; bottom:10px; }#name { position:relative; font-size:50px; color:#000; text-align:center; }#copyright { position:absolute; top:40px; right:100px; font-size:10px; color:#fff; }

  4. Well, you're slowly learning. Your navigation scheme is very primitive. You seem to live in Patagonia, one of the most beautiful areas on the planet, but apparently don't own a camera? Why don't you include a slide show of local images? If you have Adobe Creative Suite (fairly inexpensive for students) with Flash you might also try creating a flash slideshow of panned images. For your navigation menu buttons you could try some nicer looking buttons. See... http://www.zakness.com/snippets/Pure+CSS+Buttons
    y Typical a reaction of a tourist who doesn't know how life's in Argentina (e. g. many times no internet and the internet very slow!)Maybe I'm at the wrong place?
  5. First of all, everyone a good 2013! I now live in a small Argentinian town. Not many persons do have internet! However, I do have to design a website for a local hotel owner!If you compare my website: http://www.eduardlid...icolas/hpn.html which I made in 2011 and my website http://www.eduardlid.web44.net which I made in 2012. What´s the ´more´ value of the latest (please in %!) e. g. I´ve used a video and Photoshop and - very important - how do I convince the client to pay more?

  6. What do I've to translate of my contact.php for spanish speaking people (

    www.eduardlid.net)?

    (I' ve tried to make a start!)

    <?php

    /* Set e-mail recipient */

    $myemail = "eduard.lid@gmail.com";

    /* Check all form inputs using check_input function */

    $yourname = check_input($_POST['Su nombre y apellido'], "Ingresa su nombre y apellido por favor");

    $email = check_input($_POST['email']);

    $website = check_input($_POST['website']);

    $comments = check_input($_POST['comments'], "Write your comments");

    /* If e-mail is not valid show error message */

    if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+gresa)/", $email))

    {

    show_error("E-mail address not valid");

    }

    /* If URL is not valid set $website to empty */

    if (!preg_match("/^(https?:\/\/+[\w\-]+\.[\w\-]+)/i", $website))

    {

    $website = '';

    }

    /* Let's prepare the message for the e-mail */

    $message = "Hello!

    Your contact form has been submitted by:

    Name: $yourname

    E-mail: $email

    URL: $website

  7. Per Webster: Blame:1: to find fault with : censure <the right to praise or blame a literary work>2a : to hold responsible <they blame me for everything> 2b : to place responsibility for <blames it on me> Criticize:1: to consider the merits and demerits of and judge accordingly : evaluate2: to find fault with : point out the faults of Hmm....interesting...
    That's an easy one!2a to hold responsible! If you've read my post thoroughly you could read that I'm 100% responsable for my website!
  8. That's not true. You blame other people all the time. That's what you're doing here: You're blaming us for not telling you that your stylesheet was missing, when it is your responsibility to verify that, and you're accusing us of making excuses. That's not taking responsibility. Look at how you say that. You admit that your post isn't good, but you're placing the blame on other people for not "reading the post good". Again, that's blaming other people for your problems. You write a bad post, and then you blame other people for not reading it well. Garbage in, garbage out. If you give us a garbage question then you're going to get a garbage answer. If you ask a good question then you'll get a good answer. Posts 31, 35, 38, and 44 contain possible solutions. With all due respect, I believe you make a fool of yourself. You're going to have to lead the way there. It's up to you to keep your topics about web development. If you want to start talking about your living conditions and whatever else, then don't be surprised if the conversation moves away from web development.
    I understand you don't know the difference between: to critsize and to blame! Well, google it! P. s. I asked you to send this as a personal message!
  9. There's the same old Eduard, blaming other people for his problems. That's interesting that Eduard would be the person to blame other people for making excuses. All Eduard does is make excuses. Go ahead Eduard, let's hear you ###### and moan again about how your living situation makes it impossible for you to verify that your CSS paths are correct. Here's the thing, Eduard: it's your responsibility, not ours, to make sure that your files are there and your links are correct. I don't care how new you are to web developing, it is your responsibility alone to verify things like that. You should know how to do that. You should know how to use the developer tools in every browser to verify that your files are being found and downloaded. If you don't know how to do that, it's your fault. You should know how to do that. The information to do so is in my signature and has been since I started answering your ridiculous questions. But you don't want to do research, you don't want to figure things out on your own, you want everyone who has posted in this thread to spoon feed you the answers without you ever needing to think about anything. And then you have the nerve, the arrogance, to come here and blame us for not providing answers that you can understand to your questions that you can't even explain correctly? There's a reason I don't answer your questions any more. More power to the people here who want to continue to try and fix the irreparably broken.
    I´ve to react to this post, because it hurts very much! I never blame another person! In this case: it´s MY website and I´m 100% responsablefor it!BUT, I do have my critism! - WHICH IS NOT BLAMING! If I made an ERROR, it´s for meno problem to admit that and to write: you´re right! which I´ve done several timesin these fora! BUT INSTEAD: (like in this thread!) a) persons reading my posts not good, so replying to another page (I admit that postnr. 1 wasn´t good, but I knew that just when I asked the same question in anotherforum!). But after realising that (ERROR) by the other person no excuse! b no good, clear explanation why this problem exist and how to solve itOther forum: 1) Why didn't you just post the URL http://www.eduardlid.../hospedaje.html to make it easy for people to go right to the page in question. Any minute you save us will be use to try to solve the issue at hand. 2) Your CSS ex4.css cannot be found. So you need to solve the path. 3) Create a container div(<div id="imgecontainer">....your images go here</div>) then:- solution a: set its let and right margins to the specific pixels value you desire.#imageoontainer{margin:0 40px; /* 0 for top and bottom, 40px fro left and right margins. Change to whatever values */overflow:hidden;} - solution b: set the width of #imagecontainer to a certain percentage of the page width then set its margins to auto#imagecontainer{width:90%; /* change to whatever percentage can accommodate your images */margin:0 auto;overflow:hidden; c) several persons make a fool of me which has nothing to do for the meaning of thesefora! Therefore, I ask other persons to post only about web development! Other things? Fine, send me a personal message please?
×
×
  • Create New...