402 Posted Topics
Re: I've necer heard of Firstpage, but perhaps you meant FrontPage (ancient WYSISWYG editor... not even know it still excist)? Anyway usually there should be a CMS (Content Management System) behind it for easy editing, but if that's not the case then a code editor is your only option. | |
Re: Are you sure that it has to do with jQuery Mobile? I mean it's a through tested framework and I can't imagine the touch event doesn't work on iOS. Also perhaps it's better to ask at the jQuery Mobile forum. https://forum.jquery.com/jquery-mobile And `onClick` not working on IOS is also hard … | |
Re: Search for browser and device detection plugin if you really have to. | |
Re: Add the current date (today) dynamically. with PHP: <input id="datePicker" type="date" value="<?php echo date('Y-m-d'); ?>" /> or with JS: let today = new Date().toISOString().substr(0, 10); document.querySelector("#datePicker").value = today; EDIT: off-topic, but where is your [doctype declaration](https://www.w3.org/QA/2002/04/valid-dtd-list.html)? And those meta tags on the first 2 lines should be between the `<head>` … | |
Re: My favorite series at the moment in no particular order: * [Better Call Saul](http://www.amc.com/shows/better-call-saul) * [Stranger Things](https://www.netflix.com/gr/title/80057281) * [The Night Of](http://www.hbo.com/the-night-of/) * [Ray Donovan](http://www.sho.com/ray-donovan) * [Daredevil](https://www.netflix.com/gr/title/80018294) * [Silicon Valley](http://www.hbo.com/silicon-valley) And of course Game of Thrones and my all time favorite [Breaking Bad](http://www.amc.com/shows/breaking-bad). I also kinda liked [Dexter](http://www.sho.com/dexter), but the final … | |
Re: Blog commenting with irrelevant spammy backlinks will hurt your SEO, so if you still want to get something out of this old school backlink strategy, you better want to do this right. So you have to put really some effort into this which means placing comments that add value to … | |
Re: The author of that jsfiddle (which is not you obviously) used GSAP and then in particular the TimeLineLite plugin, so if you want to make your own adjustments to the sequence of the border animation, you have to learn first how the TimeLineLite plugin works in regards to its sequence … | |
Re: It's because the third through 5th tabs have an error. | |
Re: I assume you mean the realtime chat/messaging functionality which iis a free script to implement from https://www.tawk.to/ But the link (and anchor text you used) to that site smells spammy to me too. | |
Re: Greensock si for animations and has nothing to do with audio. For the rest what rproffitt said. | |
Re: You forgot to copy the CSS that belongs to the classes `line` and `square`. You can see the accosiated CSS by using **inspect** or **inspect element** (right click context menu in your browser) pointing on a square. | |
Re: You have to be way more clear what you want and your thread title is poor too. Read this - https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question - and then try again! | |
Re: In order to show/hide the content with a CSS transition you should use `max-height` instead of `height` and set `overflow` to `hidden`. See n example here: https://codepen.io/gentlemedia/pen/QBYOWd | |
Re: Don't just copy/patse stuff from several CSS resets into your own unless you know what these CSS decleration do. Like now you're also repeating a lot of porperties. I'd recommend to just stick with [normalize.css](https://necolas.github.io/normalize.css/) and for typography it doesn't make sense anymore to reset your headings since RWD became … | |
Re: Did you checkout this pushState and AJAX tutorial" https://css-tricks.com/using-the-html5-history-api/ | |
Re: Sigh... why would anyone here explain this if a simple Google search gives you already the answer? | |
Re: There are indeed many plugins for this, but if it's just for this one animation then you can/should [do it without a plugin](https://medium.com/talk-like/detecting-if-an-element-is-in-the-viewport-jquery-a6a4405a3ea2). I see you use a jquery plugin for the counters and trigger them on page load, but you have to trigger them when the `circles` div is … | |
Re: Why do you wanna create something like this from scratch and if so how you think you gonna do that in a vacation time? Unless your vacation spans months and months and months :) Why not just use something like https://www.cs-cart.com/multivendor.html and build further ontop of that? | |
Re: I have another suggestion and that is using the HTML5 History API (pushState and AJAX) for this. This will also work with the browser back button and you don't get all this content in one document unlike your tab implementation. Here's a little tut and example demo: https://css-tricks.com/using-the-html5-history-api/ | |
Re: I really have no clue what you're after. ¯\_(ツ)_/¯ > that run on your Iphone, Androi, winphone, restaurant, coffee shop... ¯\_(ツ)_/¯ > for example simple you have to share yourself with. | |
Re: These are a good place to start with. https://moz.com/learn/seo https://searchengineland.com/library/channel/seo https://neilpatel.com/blog/ https://www.mattcutts.com/blog/ | |
Re: Mozilla has an open source PDF viewer written in JS. https://mozilla.github.io/pdf.js/ | |
Re: There are loads of ready made scripts for this. Here's for example a tiny javascript modal library with no dependency. https://github.com/oigil/dndod / https://oigil.github.io/dndod/demo Or do you need a more robust soluttion with tons of options and with support for older browsers such as old IE, then you could go for … | |
Re: It's doanle, but not like that no. Here a tut how to do it with CSS and a bit of JS and that also keeps accisibility in mind. https://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ | |
Re: I don't think the OP is really interested in who does (or who doesn't) know Danny Sullivan. I think he/she is more interested in putting some backlinks in his/her sig. If the OP was really in for some proper discussion, then he/she would have the decency to follow up on … | |
Re: > either embed it in my website and/or send it via mail If you have a webshop with your products then there's no need to put it on your website too. A flipbook in an email is too advanced for the email applications and software. If you want to do … | |
Re: My advise is to stop caring about Alexa ranking. Alexa data is not real world data! There are loads of articles and blog posts online with numbers and all explaing why you shouldn't care about it. Just put all your efforts and time in SEO.... and in optimizing your websites' … | |
Re: I did a backlink check with that celeb style outfit webshop on monitorbacklinks.com and pretty much all the backlinks that I could check were from (irrelevant) forums or blog posts with fake questions or comments including spammy links like the one above from the OP, so this is a good … | |
Re: Set on both inputs a `vertical-align: top` and you can ditch the `display: inline` declarations, because `inline` is already the default `display` value for inputs. Another thing;; there's a specific `type="search"` for your search field instead of using `type="text"`. | |
Re: @happygeek - just ban these posters!!! You know why they're here, so pull the trigger on them! | |
Re: Creating faux borders with empty div tags is rubbush, so don't do that :) And the `position: absolute` on them take them out of the normal document flow, which means they don't have effect on other elements on the page and that's why if your paragraph grows, it goes over … | |
Re: Hard to tell withou seeing any code, but here's some info: A `select` element is an [inline element](https://developer.mozilla.org/en-US/docs/Web/HTML/Inline_elements#Elements) which means it has by default the CSS decleration `display: inline` in the browsers' computed stylesheet. Top/bottom margin and padding don't have effect on inline elements. Only left/right margin and padding. Do … | |
I'm using `file_get_contents()` to parse data of a JSON file within a `foreach()` loop onto my page. <?php $url = 'data/gigs.json'; $data = file_get_contents($url); $gigs = json_decode($data, true); foreach ($gigs as $gig) { echo '<tr>'; echo '<td><time>' . $gig['date'] . '</time></td>'; echo '<td>' . $gig['event_venue'] . '</td>'; echo '<td>' . … | |
Re: Errr... ain't it called Search Console for quite some time now? Anyway... it still looks the same here in Greece, so probably you in the US are one of the first to have a look. | |
Re: Never ever go for a cheap SEO service!!! https://www.youtube.com/watch?v=piSvFxV_M04 It's funny though that the cheap one is honest about him using black-hat techniques. Good SEO takes time and resources, but you can do a lot of on-page SEO yourself, because all the info how to do this properly is easy … | |
Re: > (I refuse to call it football. We have the real football here. Flame away. :)) hehe... no, your 'football' is what we call handball here. :) | |
Re: You **DON'T** create two versions of your navigation! I told you (in one of your other four threads regarding this same issue) that you have to **REPLACE** the markup (HTML) from your current navigation with the navbar markup that comes with Bootstrap out of the box. The classes on that … | |
Re: Resize your browser window to narrow and then use inspect element (dev tools) to find the element and its CSS that's causing that extreme height. | |
Re: Like pty said! But you will have to replace the current markup for that navigation to the bootstrap navbar markup. https://getbootstrap.com/docs/3.3/components/#navbar But 2, the layout of that website is totally broken (not responsive) on tablets and mobile phones, so you might want to fix that first. | |
Re: You've asked this question already and you've gotten the answer already too. https://www.daniweb.com/digital-media/ui-ux-design/threads/515397/navigation-bootstrap | |
Re: Line 6 should be: $('#cCart').data('name', this.value); EDIT: And line 5 should be: $('#dCell').change(function() { | |
Re: Most of them are based on Isotope. https://isotope.metafizzy.co/ | |
Re: I was curious what your code does, so I've created a demoi of it in codepen and without the transform property the table row is fixed at the top in the latest Chrome. Ok, it looks awful, but it's fixed, so what's the problem? https://codepen.io/gentlemedia/pen/KZqNoL I also would like to … | |
Re: rproffitt is right and it also depends on what your objectives and criteria are. There are things that Anguar 2 can do while React can do this not and visa versa. https://medium.com/javascript-scene/angular-2-vs-react-the-ultimate-dance-off-60e7dfbc379c | |
Re: This is because the page you share via WhatsApp has certain metadata included within the `head` of the HTML. It's called the Open Graph protocal and it's invented by Facebook so that when people share webpages on Facebook it shows a title, description and image in their posts. Now since … | |
Re: > Since someone changed my first password and makes me cannot login. Yeah, you could wait for that :)))) Oh... and it was not me! | |
Re: There is a `onclick="deleteTimeLine(this)"` on that anchor tag, so that function somewhere in your JS will do something. In `data-* ` attributes you can store data for that elelment which you then can manipulate with JS `.data()`. Those tags `{{$data->tittle}}`are from a JavaScript templating engine such as Mustache or Handlebars, … | |
Re: Also insert the name and the price from your database in data attributes. Something like this: <p class="product-name" data-name="<?php echo $row['fld_product_name'] ?>"><?php echo $row['fld_product_name'] ?></p> <p class="product-price" data-price="<?php echo $row['fld_product_price'] ?>">RM <?php echo $row['fld_product_price'] ?></p> BUT... you will need to replace the white spaces with dashes and convert to lowercase, … | |
Re: Why creating it yourself? There are heaps of free and payed applications for that. Here's one for free: https://www.waveapps.com/invoice/ |
The End.