Search:

Type: Posts; User: Dimarchi; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: CSS: Centering, layering and rotating img’s

    IMG is not a block element. Besides, IMG elements are positioned absolutely to be at top left corner, never to move from there (apart from transfrom CSS which does work with each and every IMG...
  2. Re: ye olde loopy javascript closure conundrum

    It is better to keep stuff that does different things separate, in this case the creation of divs and the assignment of event listeners to them. It will result in a code that is easier to handle and...
  3. Re: Tabular menu using HTML, CSS and JavaScript

    For javascript:void(0), see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void and particularly the part about Javascript URIs. As for the overflow: hidden CSS stuff,...
  4. Replies
    5
    Views
    449

    Re: pass argument to event listener?

    Simply put, try


    document.getElementById("button").addEventListener("click", change_color(0), false);


    and see if it makes a difference.
  5. Replies
    6
    Views
    429

    Re: Clock Issue Between Operating Systems

    This is the page I used as a guide to fix my issues. In short, I left Ubuntu alone, and did no modifications there. All that stuff took place in Windows 10. In other words, method B. Do make sure you...
  6. Replies
    6
    Views
    429

    Re: Clock Issue Between Operating Systems

    Most likely there is a way to do it. It depends on what this other OS is, though. So, more info needed. As an example, I dual boot between Ubuntu (16.04) and Windows 10. Both are eager to mess up...
  7. Replies
    3
    Views
    364

    Re: newbie question about using git

    Here's one link that should provide further food for thought:

    sethrobertson.github.io/GitBestPractices

    As it says on the page, there is no one true answer to this. It will vary according to the...
  8. Re: Working with Ubuntu as a Frontend Web Developer

    From my personal, subjective, and limited experience, I have found out that the answer is no. Dual boot with Windows and those applications installed is still your (better) friend, in my humble...
  9. Re: Changing horizontal scroll behaviour in Firefox

    Add-ons such as

    https://addons.mozilla.org/EN-us/firefox/addon/tab-wheel-scroll/

    don't work for you?
  10. Replies
    2
    Views
    428

    Re: console.log in Firefox

    Click Debugger in that view. It lists your scripts in addition to add-on scripts. Just select the script you wish to work with. However, if it is a message you want to see in the Console view,...
  11. [SOLVED] Re: Positioning of @media within a css style sheet - method to madness?

    Allow me to introduce you to the concept of specificity in the context of CSS:

    https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity

    That page should give you some more insight into what...
  12. [SOLVED] Re: js: knows the theory but never know how to use it

    To some extent, complex is a collection of simple things...just lots and lots of them. Thus, my advice is to start with the simplest thing your project may require and build upon it. You may find...
  13. Replies
    2
    Views
    422

    Re: Some help with Glade please

    This link may be of some use:

    http://stackoverflow.com/questions/22219788/adding-custom-widget-to-glade
  14. Replies
    2
    Views
    374

    Re: escape the onclick!

    Is this what you were after? Note: getElementById, not getElementBy.


    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <title>Background colour change</title>

    <script>
  15. Re: Problem to open a PHP file with Apache2 on Ubuntu 14.04

    Those are correct responses. The first response happens when no file with the name of index.php is found under the supposed location (default being /var/www/html). This location can be changed, but I...
  16. Replies
    7
    Views
    761

    Re: Problem with Apache2 Web Server

    It is indeed as Lars Noodén says. If at all possible, please disregard what I have said and follow his advice.
  17. Replies
    7
    Views
    761

    Re: Problem with Apache2 Web Server

    It is entirely possible that .htaccess has been disabled, and you need to enable it. brian-mccumber's links are also good - I recommend reading them. Apache's documentation is good, too, so take a...
  18. Replies
    7
    Views
    761

    Re: Problem with Apache2 Web Server

    You modify the header Apache includes when it displays a directory index. Have a look at this page:

    https://perishablepress.com/better-default-directory-views-with-htaccess/


    It should explain...
  19. Replies
    3
    Views
    551

    Re: MEAN Stack on Ubuntu

    You are mistaking a signature for a comment there, I believe. No need to comment that. :)

    Anyway...the only problem I can think of is whether the requirements of the latest versions of everything...
  20. Re: Simplest way to connect to MySQL from Android?

    Simply put, you can not avoid server side stuff. Not sure about RESTful here, though I doubt you can avoid server side there, either.
  21. Replies
    12
    Views
    677

    [SOLVED] Re: Displaying command lines HTML style

    Really? Well, here's a test for it (apart from the image mentioned in the background url):


    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <title>Code example</title>...
  22. Replies
    12
    Views
    677

    [SOLVED] Re: Displaying command lines HTML style

    That is simple CSS formatting of pre elements. Inspect that particular piece of the page (for example, in Firefox right click above it and select Inspect Element (Q)) and you'll find everything...
  23. Thread: Anchor text?

    by Dimarchi
    Replies
    9
    Views
    638

    Re: Anchor text?

    You are referring to the article elements, perhaps? They work just like all other possible anchors if you want to link to them. That is, since your document claims to be HTML5 compliant (so says...
  24. Re: HTML5, CSS + Javascript editor that doesnt need us to remove linux-generic

    Any text editor is suitable. Gedit (under the guise of Text Editor or something like that)...Nano for terminal based text editors (or Vim, if Nano does not cut it). These come with Ubuntu, so you...
  25. [SOLVED] Re: Qt creator - Build app without the whole library?

    Just to make sure you don't misunderstand the point of libraries, I suggest reading about them: http://en.wikipedia.org/wiki/Library_%28computing%29

    Now, about Qt...

    Most (if not all) compiled...
Results 1 to 25 of 132
Page 1 of 6 1 2 3 4