Jump to content

proudly

Members
  • Posts

    39
  • Joined

  • Last visited

proudly's Achievements

Newbie

Newbie (1/7)

3

Reputation

  1. if you want to use one css file, you could use classes in order to give differant style in everyone class. If that is impossible you can use more than one css
  2. Dave? you where who blame a newbie not to use ''like link''. I'm saying that the same way moderators work. I dont blame dave
  3. I know his username, you know too. His is a moderator , and uses the bad schema ''like link'', blame him first and then the newbies
  4. hello hisoka , I found that sentence in a book , maybe is going to give you an idea ''JavaScript embedded in SVG typically resides within a <script></script> tag. Because SVG is actuallyXML''
  5. ...we learn from what we see : '' Devoted Member [*][*]Moderator[*][*]3,060 posts [*]Gender:Male[*]Location:STL[*]Interests:Learning web development. Posted Today, 01:49 AM Due to the "same origin" policy I think you need Php to do that. http://en.wikipedia....e-origin_policy See... http://php.net/manual/en/book.curl.php ''
  6. if you have access to modify the code on the other website, you could give the variable ''number'' the value ''1845.54'' inside a script, and then dislpay that variable in your site. If you don't , maybe you could create a link to that td (i don't know how)
  7. maybe , i m not sure , you have to enclose it between <svg> </svg> like https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
  8. notice that when you click on the EXAMBLES (on http://www.w3schools.com/html/default.asp) and then you click on CSS Exambles you go to onother page , onother href, the CSS .That is why the left side changes
  9. as I can see the ''conversation'' up to now, a table could give a shorter and cleaner code
  10. also you can use a table
  11. where is the ''brightness'' in your code?
  12. I think that it is not the backround that youhave to change. You could change the opacity when the kensor is hover an image eg .overlay { background:rgba(0, 0, 0, .90); opacity:0; } .img:hover .overlay { opacity:1; } Imagine that the overlay is a glass above your images and it is transparent, and when the mouse is hover it the opacity changes from 0 to 1 try it andtell me.
  13. proudly

    css

    Lets say that you want to make a website . Create a directory with the name Mywebsite. Put there all your files , including css, html, js, and wwhateve.Upload your directory to a server. Then is enough to ''call '' by using <link rel="stylesheet" type="text/css" href="mystyle.css">
  14. proudly

    css

    I mean that : your 65 html <!DOCTYPE html><html><head><meta charset="utf-8"><link rel="stylesheet" type="text/css" href="mystyle01.css"></head><body> <p class="class1p"> some text</p> </body> </html> and the in the css file (common for all the html's) .classs1p{ background-color: green;margin: 15px; } Is that working?
×
×
  • Create New...