-
Replied To a Post in Bootstrap nav css
> How to unminify the stylesheet? http://unminify.com/ Paste the minified CSS and click button 'unminify'. -
Began Watching Demo website images- Copyright
Hello! As part of my unversity module, I need to create an ecommerce website. My only problem is that I need images for this website. Does anyone know a website … -
Replied To a Post in Demo website images- Copyright
You can try these links: https://medium.com/@dustin/stock-photos-that-dont-suck-62ae4bcbe01b http://bootstrapbay.com/blog/free-stock-photos/ http://mediamilitia.com/250-free-stock-photography-sites/ And of course flickr creative commons section. -
Began Watching Bootstrap nav css
Hello, I am trying to create bootstrap navigation with background color of my choice yet, I haven't been able to do so. The default boostrap nav color is grey. How … -
Replied To a Post in Bootstrap nav css
The grey background color is set in the bootstrap stylesheets linked at the top and is probably set to another element then div 'container'. My advise is not to set … -
Replied To a Post in Changing text with no html tags
@JorgeM - actually your snippet is the one that works beautifully... not mine :( going to look into this. EDIT: Your solution is the way to go to handle its … -
Replied To a Post in Modernizr, Oh the Mystery
There's no script that brings HTMl5 & CSS3 support to IE6, 7 & 8. Like I said there are polyfills for certain HTML5 & CSS3 features/properties ([lots of them](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills)), but … -
Gave Reputation to Nathanaelneal in CSS
I have a website but that site 2 links ins't working and showing this dialogue. This webpage has a redirect loop. Anyone suggest me for the issue website is e … -
Replied To a Post in Changing text with no html tags
Indeed! This would change also the text from its children. You don't want that of course :) Then you could look for an exact match of the word 'Log In' … -
Began Watching Modernizr, Oh the Mystery
Perhaps this isn't a mystery, because I don't have access to older browser windows, like Internet Explorer 9 or below. But this does bring a rather interesting question to the … -
Replied To a Post in Modernizr, Oh the Mystery
Modernizr is only for feature detection and does not add for example rounded corners to your element in browsers that doesn't support this CSS3 property. If you want rounded corners … -
Began Watching Changing text with no html tags
Hi, I have an unusual problem, I am developing within a wordpress environment and using a plugin. To futureproof the plugin I do not want to edit the code that … -
Replied To a Post in Changing text with no html tags
If you use jQuery you can use the .text() method to change 'log In' to whatever you want. The following will change 'Log In' to 'New text'. $(function() { $(".wpb_wrapper").text("New … -
Began Watching Google Map Needs Optimized Images
Google PageSpeeds Insights says: Should Fix: Optimize images Properly formatting and compressing images can save many bytes of data. Optimize the following images to reduce their size by 245.2KiB (17% … -
Replied To a Post in Google Map Needs Optimized Images
Better to use the Google Maps JavaScript API to include your maps on the page? https://developers.google.com/maps/documentation/javascript/ Your maps gets then drawn with canvas instead of images. Makes zooming in/out much … -
Replied To a Post in What is the nested CSS ?
@diafol - using a CSS preprocessor will save you time for sure on large scale projects, but after compiling your mixins, extends and nesting, it can do more harm then … -
Replied To a Post in What is the nested CSS ?
@diafol - I thought so, but was not sure. :) -
Replied To a Post in What is the nested CSS ?
Okay, to be more precise then :) 'embedded' CSS is CSS between style tags in the <head> <head> <title>Document Title</title> <style type="text/css"> div { background-color: blue } </style> </head> 'inline' … -
Began Watching How to add html attributes to XML file
Hi All, I am a unix script debeloper and I am very new to html coding with basic awarness of syntax. My question is how to add html attributes inside … -
Replied To a Post in How to add html attributes to XML file
To add styling to XML tags, you would use an external CSS file which you call at the top of your XML document like so: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/css" … -
Began Watching What is the nested CSS ?
please give me nested CSS example and Explain. -
Replied To a Post in What is the nested CSS ?
@michael.james.90475 - No, that's called inline CSS. Nested CSS is at the moment only possible with a CSS preprocessor, but it might be in the future eventually possible within pure … -
Replied To a Post in Problem with pagination
Be aware that by adding or changing code in core files there is the risk that you'll lose it when there is a Joomla update. By a complete version upgrade … -
Replied To a Post in Problem with pagination
Thanks, that made things much more clear to me. Errr... that markup is a bit messy :) `div .list-footer` or `div .limit` doesn't get closed properly. There's only an opening … -
Replied To a Post in Problem with pagination
There are tools to share an URL from your local server. https://ngrok.com/ Anyways... It's hard to debug with the information you posted. You have to look which class gets added … -
Began Watching Problem with pagination
I've got a problem with my pagination with one of my components on my Joomla 2.5 website. I no longer have a subscription with the developers so they won't help … -
Replied To a Post in Problem with pagination
It's hard to say from an image why it doesn't line up next to each other, but as far as I can see what happens is that the page nav … -
Marked Solved Status for append 5 & prepend 5 empty li tags to ul w/ jQuery
Hi, This will do the job, but it's ugly, so how to do this more elegant? $('ul').prepend('<li></li><li></li><li></li><li></li><li></li>'); $('ul').append('<li></li><li></li><li></li><li></li><li></li>'); Thanks in advance! -
Replied To a Post in append 5 & prepend 5 empty li tags to ul w/ jQuery
Aha... that was indeed needed... "undefined" is gone now. Thanks for this and although the snippet looks more terrifying now then what I had, I assume it's better like this … -
Replied To a Post in append 5 & prepend 5 empty li tags to ul w/ jQuery
Thanks for the explanation and for a second alternative for the last bit. I will try that too. I implemented the first code snippet of yours by the way and … -
Replied To a Post in append 5 & prepend 5 empty li tags to ul w/ jQuery
Yeah 'elegant' was a bad way to describe what I was looking for I guess :) Nonetheless, I was looking for something more programmatical (another weird way to describe it), … -
Edited append 5 & prepend 5 empty li tags to ul w/ jQuery
Hi, This will do the job, but it's ugly, so how to do this more elegant? $('ul').prepend('<li></li><li></li><li></li><li></li><li></li>'); $('ul').append('<li></li><li></li><li></li><li></li><li></li>'); Thanks in advance! -
Created append 5 & prepend 5 empty li tags to ul w/ jQuery
Hi, This will do the job, but it's ugly, so how to do this more elegant? $('ul').prepend('<li></li><li></li><li></li><li></li><li></li>'); $('ul').append('<li></li><li></li><li></li><li></li><li></li>'); Thanks in advance! -
Began Watching append 5 & prepend 5 empty li tags to ul w/ jQuery
Hi, This will do the job, but it's ugly, so how to do this more elegant? $('ul').prepend('<li></li><li></li><li></li><li></li><li></li>'); $('ul').append('<li></li><li></li><li></li><li></li><li></li>'); Thanks in advance! -
Replied To a Post in fullPage.js only showing first section
Awesome! Glad it's sorted. -
Began Watching fullPage.js only showing first section
I'm trying to use fullPage.js but its only ever showing my first section! I have my sections set up like this <div class="section"> Section 1 </div> <div class="section"> Section 2 … -
Replied To a Post in fullPage.js only showing first section
Are these sections in the element with the class 'wrapper'? Do you load all the files that are needed? https://github.com/alvarotrigo/fullPage.js#including-files Can't tell much with only those pieces of HTML and … -
Began Watching % or em
Since i want to develop responsive websites i usually neglect px and use % for dimensions. But i discovered that some cases % doesnt work so i use em instead. … -
Replied To a Post in % or em
In responsive websites normally we would use `%` for layout dimensions and `em` (or even `rem` units depending on your targeted browsers) for the fontsizes. `em` or `rem` is handy … -
Began Watching bootstrap
can someone tell me how do i download a bootstrap theme? for example i want to save this one http://bootswatch.com/cerulean/ -
Replied To a Post in bootstrap
There's a download button at the top, which reveals a sub menu with the CSS files (a bootstrap.css for development and bootstrap.min.css for production). If you're familliar with CSS preprocessors … -
Replied To a Post in CSS: How do you style a group of tags
If you want to nest CSS blocks, you will need to write your CSS with a CSS preprocessor like SASS or LESS. -
Began Watching CSS: How do you style a group of tags
I'm not quite sure how to word it but I have a group of tags I want to style nav->ul->li->a but I'm not sure what the syntax is to specify … -
Replied To a Post in CSS: How do you style a group of tags
Not sure what you want to make orange, but you have on line 18 a CSS block in another CSS block. That is not going to work. Take it out … -
Began Watching syntax for href point to div class also send variable value
Hi, I want to create list of items on my header to which if selected sends that value to my Div class where my search code is there as input … -
Replied To a Post in syntax for href point to div class also send variable value
You will need AJAX/jQuery for this. I did a quick google and found a tut for you that query a database to display text in a tooltip. Not exactly what … -
Marked Solved Status for multiple domaoin extensions
Hi peeps, Not sure if this is the right forum to ask, but I've been asked to look into a situation for a client. They have a .com domain for … -
Marked Solved Status for Check for matching attribute values and do something (with jQuery)
I have several pages that has the following mark-up in it, but the value of the datetime attribute is on each page different. <a class="index" href="#"> <time datetime="2015-W01"> <strong>week</strong> <strong>01</strong> … -
Replied To a Post in Check for matching attribute values and do something (with jQuery)
Well, let me answer my own question, because I figured it out :) This will do the trick: var $dt = $('.index').find('time').attr('datetime'); $('.weeks').find('time').filter(function(){ return $(this).attr('datetime').match($dt) }); -
Edited Check for matching attribute values and do something (with jQuery)
I have several pages that has the following mark-up in it, but the value of the datetime attribute is on each page different. <a class="index" href="#"> <time datetime="2015-W01"> <strong>week</strong> <strong>01</strong> …
The End.