-
Replied To a Post in Change span content when hovering over various links
Sorry I don't have time to look at it now, but you could use the data attribute as well for your jQuery something like this: var $default = $('.default').html(); $('li[data-lang]').on('mouseenter', … -
Replied To a Post in Change span content when hovering over various links
There is a pure css solution if you use custom data-attributes. HTML: <ul> <li lang="es" data-lang="Nuestros jugadores representan una variedad de fondos, países e idiomas.">Español</li> <li lang="zh" data-lang="我們的球員代表了各種背景,國家和語言。">中文</li> </ul> CSS: … -
Began Watching Change span content when hovering over various links
I'm trying to have a sentence at the base of my site that says how many langauges our members speak. I simply want that sentence to change from English to … -
Replied To a Post in SVG Path to Circle to Canvas system ?
It's also possible with GASP, but you'll need a Club GreenSock membership for that. https://greensock.com/drawSVG And if it is only linedrawing what you want to do then you can also … -
Replied To a Post in SVG Path to Circle to Canvas system ?
If you want to create some animations on the SVG then I agree with Ryantroop. Why not just do it directly on the SVG instead of get it into canvas … -
Replied To a Post in SVG Path to Circle to Canvas system ?
Not sure either, but is there any specific reason you want to load an svg in canvas? I mean canvas is also for vector graphics which you can specifically modify … -
Replied To a Post in SVG Path to Circle to Canvas system ?
> When working with Canvas within the <canvas></canvas> tags if, using the link I posted earlier I would place the group id <g id="Artwork_11"> within a canvas Why would you … -
Replied To a Post in SVG Path to Circle to Canvas system ?
Okay, but then at least you still have to draw the little dots. Like I said what you have now are only pen movements. Anyway.... this post explains the path … -
Replied To a Post in SVG Path to Circle to Canvas system ?
Yes, I see now in your example that you only give the command (`M73.3,73.1`) to move (`M` and `m` stands for `move`) the pen to `x=73.3` and `y=73.1` coordinates, so … -
Replied To a Post in SVG Path to Circle to Canvas system ?
You can change/set the fill color of a path with CSS. .st0 { fill: blue; } You can also set the stroke color & width with CSS. .st0 { fill: … -
Began Watching SVG Path to Circle to Canvas system ?
How can I take a path such as what you see below and have Javascript make a visible circle or dot based on the path class ? As well output … -
Replied To a Post in i want source code for uploading ,displaying and downloading image in jsp
Ok... hold on! I'm on it! -
Began Watching i want source code for uploading ,displaying and downloading image in jsp
i want source code for uploading ,displaying and downloading image in jsp -
Replied To a Post in Opacity problem
Just use `.box::before` for the base styles for the background image and then give all the boxes a unique class such as `.box-1`, `.box-2`, `.box-3`, etc. which you then can … -
Replied To a Post in Opacity problem
If you set an opacity to an element then that element and its child elements will get that opacity. So either set an opacity on that image in Photoshop or … -
Began Watching Opacity problem
Sir I have these codes <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <style type="text/css"> * { margin: 0; padding: 0; } .box { margin:auto; top:0; left:0; bottom:0; right:0; width:20%; … -
Replied To a Post in Printing values of jquery custom autocomplete
I use the @media print styles from HTML5 Boilerplate in my default CSS file. Perhaps it can come in handy for you too. /* ========================================================================== Print styles. Inlined to avoid … -
Began Watching Printing values of jquery custom autocomplete
My code is here https://jsfiddle.net/yqjuy3m1/1/ .. I know my print html is out dated (could be my issue) so any updated approach is welcome. What I am trying to do … -
Replied To a Post in Header.php does not work
Give container a top margin of 60 px (the height of the header) and I'd recommend to take out the `min-height: 100%` and `height: auto`, because they don't make much … -
Replied To a Post in Header.php does not work
Try to give it a z-index, because it might behind the #container div which has a min-height of 100% and a white background color. This might be covering the header. … -
Began Watching Header.php does not work
Sir, I have this header.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" href="css/css3menu1.css" type="text/css" /> <style type="text/css"> #header1 { width: 100%; color: #FFC; background-image: … -
Replied To a Post in How do you convert a website so that it becomes mobile friendly
I agree with diafol! Hiding content is hiding the problem, not a solution to it. -
Gave Reputation to diafol in How do you convert a website so that it becomes mobile friendly
Just a gentle retort on mobile-first :) Why load something, just to hide it? One point is that mobiles are generally slower and many people have hard limits with regard … -
Gave Reputation to diafol in send image from one page to display in another page
Start your own thread as this may be a slightly different take on the OP. -
Replied To a Post in How do you convert a website so that it becomes mobile friendly
> I find the demand for responsive sites a waste of time - phones now have bigger screens, and if you turn them from portrait view to landscape, most non-responsive … -
Began Watching How do you convert a website so that it becomes mobile friendly
I have a website that is not mobile friendly, its designed in plain html and css how do i make the website responsive how do i make the menu go … -
Replied To a Post in WordPress: How would I create a simple site like this?
> Not sure if I'd want a site that looked like that! Indeed! That sites loads, performs and displays horrendous. Such a big architect agency with such a lousy site … -
Began Watching WordPress: How would I create a simple site like this?
Hi all, I would like to know if this is an appropriate forum to ask these questions. Website Example: http://www.shoparc.com I would like create a similar site in WordPress. I … -
Gave Reputation to Aeonix in Fill height and vertical align center
Okay so I did find an answer, but that gives a new place for a bug. The "solution" is: https://jsfiddle.net/aL5ta60b/2/ Which centers the red div, and centers it's content. Fantastic. … -
Marked Solved Status for a hard-refresh doesn't seem to clear the cache anymore in Chrome
I've noticed the last couple of weeks that a hard-refresh won't clear the cache anymore in Chrome... well to me and two clients of mine (we're all on a Mac … -
Replied To a Post in a hard-refresh doesn't seem to clear the cache anymore in Chrome
Ok, I've googled with some other keywords and i found out that there is also a SHIFT-CMD-R to reload the page and this will (still) clear the cache. Not sure … -
Replied To a Post in a hard-refresh doesn't seem to clear the cache anymore in Chrome
I've Googled high and low, but couldn't find an answer yet. What you've found was already the case for OS X, but now CMD (⌘) + R doesn't change the … -
Replied To a Post in a hard-refresh doesn't seem to clear the cache anymore in Chrome
A hard-refresh in incognito window doesn't update my CSS too. And I didn't spread it to other computers :) Others (2 clients and a friend) on a Mac have it … -
Gave Reputation to Stefce in bootstrap margin between images
Man i cannot thank you enough.. really appreciated ! Have a great day or night ! -
Replied To a Post in a hard-refresh doesn't seem to clear the cache anymore in Chrome
I have it with all the sites I work on at the moment which are 5 in total. Changes to my CSS won't appear anymore with a hard-refresh unless I … -
Replied To a Post in bootstrap margin between images
Well... you could do that of course, but then I'd suggest you do the following, because seriously you don't want !important to fix issues like this. in your HTML of … -
Replied To a Post in a hard-refresh doesn't seem to clear the cache anymore in Chrome
> I usually do a clear with CTRL-SHIFT-DEL. What happens when you try that? I'm on a Mac, so I can't try that out now. I'm not even sure if … -
Replied To a Post in bootstrap margin between images
> Actually this solves the problem but i have a question why is not recomended to use !important ? I've posted a link to an article that explains it well. … -
Replied To a Post in a hard-refresh doesn't seem to clear the cache anymore in Chrome
Wether or not an incongnito window will clear the cache with cmd-R (mac) or Ctrl-f5 (windows) it used to work within a 'normal' window before too. I'm just baffled why … -
Replied To a Post in bootstrap margin between images
> Here is the full css code Those CSS blocks have nothing to do with the HTML of that image grid, so the error is not in there. You have … -
Began Watching bootstrap margin between images
Hello i have a problem putting margin between the images i have this html code <div class="row"> <div class="col-lg-12"> <h2 class="page-header">Featured Posts</h2> </div> <div class="col-md-4 col-sm-6"> <a href="portfolio-item.html"> <img class="img-responsive … -
Created a hard-refresh doesn't seem to clear the cache anymore in Chrome
I've noticed the last couple of weeks that a hard-refresh won't clear the cache anymore in Chrome... well to me and two clients of mine (we're all on a Mac … -
Began Watching a hard-refresh doesn't seem to clear the cache anymore in Chrome
I've noticed the last couple of weeks that a hard-refresh won't clear the cache anymore in Chrome... well to me and two clients of mine (we're all on a Mac … -
Replied To a Post in Content of child, escapes parent, even in overflow none
I have 3 dots :) http://codepen.io/gentlemedia/pen/MbEeOa -
Began Watching Content of child, escapes parent, even in overflow none
https://jsfiddle.net/n0260s1L/3/ Is what I have. Text of `div.summary` goes outside of it's planned content. Even when told not to. The only solution to this is `overflow: none;` in "super-parent" `div.mail`. … -
Replied To a Post in Unexplained, explained padding
> Well "float: left" is pseudo-default. But "float: right" suddenly solves marginal errors, why? Sorry, but I don't know whatt you mean with 'pseudo-default' and 'float right solves marginal errors' -
Replied To a Post in Unexplained, explained padding
> I have no idea why default float: left; would create a problem and float: right; wouldn't. Could you explain? What kind of problem do you mean? > But only … -
Replied To a Post in Yet another "fill remaining width" question
> How about another way, is it possible to bring two items on the left, and then have span.middle "fill" the remaining space on right? No, with old fashioned CSS … -
Replied To a Post in Yet another "fill remaining width" question
That is not possible without using `flexbox`, `grid` or javascript. If you use `floats` or `inline-block`, you'll need to set dimensions. You can get half of what you want by … -
Began Watching Yet another "fill remaining width" question
I have two items that look like this span.left { float: left; display: inline-block; /* Take space neccessary */ } span.middle { /* Take free space only, do not push …
The End.