ooredroxoo
-
Managing large number of psds
Hey @theacefes, today I found this service -> https://layervault.com/tour, they manage PSDs with version control with ease, maybe you could have some use of this. Cheers.
-
Faster CSS!
I mean the size based on the requests, if somewhere on the road you end up with too much css loading on a single page, and they are not so big you can merge them to avoid some http connections on your site, and avoid repeating styles between pages. …
-
Local HTML validation extensions?
On chrome you have the Web Developer Extension witch has a validation tool for HTML, CSS and Javascript.
-
Using framework
I don't undertand your question, do you wanna remove all the ids and classes from the css? the HTML atributes? What are the difficulty you are facing?
-
Uploading my videos on my website unto Youtube
If you have the video files you can Drag And Drop they (yes a bunch of them) on the Youtube Upload Page, if you are on the mac you can use quicktime -> file -> share -> youtube. But the bottom line are that you have to upload all the movie…
-
Team workflow with Sass/Codekit
If need to be live coda has a feature for live colaboration, else git can handle very well, just keep a good git workflow. Commit both files the sass and the compiled.
-
Odd Validation Error
You also have some broken links too Screenshot
-
Faster CSS!
@mostafaghanbari, its depends, if you have a big css for another section (another page) of the site maybe you should put on a separated file, if the user ever hits that section that stylesheet is loaded, but if not they don't need to load. If …
-
Multiple Header Anchor Tags?
The @joshuanhibbert example should work just fine. Just use the classes of the list itens on your css adding the anchor selector after as said by @joshuanhibbert and put the color that you want, the common properties as font-size, font-family and so…
-
Forms are they database supported?
Usually this services store the data registered on their website and notifies you via email. As you have an event you can leave the service collecting the data from the attendees and after close sign up form get the data from the service. Usually …
-
Losslessly Compress Images (Windows)
On windows I've used Riot, an alternative to ImageOptim.
-
centering divs horizontally on mobile devices
I Did have a problem design for mobile once, where are give a white space on the right side of the device, to solve the problem I've used the meta declaration for view port from H5BP. Inside my Head tag. Try it out, if don't work…
-
I have a very stupid, easy question.
you can place your copied text on a markdown software like iA Write and export the HTML, each breakline on iA Writer makes a paragraph (hint: you can use the markdown on github if you wanna do for free).
-
From ideas to reality. Anyone?
Some people just look for investors, here on Brazil we have some workshops sponsored for big companies that invest money in some Ideas, we have some events that unite people with different skills to make a product, found a start-ups how they call he…
-
Feedback - Open source responsive template
@scottnix I understand, I was just saying with a fluid width column on a responsive web site you have to be more careful with your content, plan better how to do than just make fluid, ins't hard, just require more thought.
-
Weird loading problem in Chrome
As I see the white space is result of the padding applied to the nav. One way to fix it is #logo { /* Add position:relative so creates context */ } and on the #logo nav { /*Add position:absolute set right:0 or the margin…
-
webfonts vs websafe fonts and alternatives
Give a Look at [http://www.fonts.com/] (http://www.fonts.com/) on [ShopTalk Show] (http://shoptalkshow.com/episodes/040-with-laura-kalbag/) Laura Kalbag explains that Fonts.com delivery fonts using CSS while TypeKit uses Javascript. Is Worth give a…
-
Managing large number of psds
I would suggest use layer comps, so one PSD could have many mockups for the same website, and updating the content or appearance of one layer would be a breeze. If you can't do this you aways can put in version control (but will be heavy). ON…
-
Feedback - Open source responsive template
@scottnix This is not aways the case, if you have a paragraph with few text and have a column that stretch fluid you can have a column that is too small for the text (I know that using min-width may solve the problem) but if you don't have much…
-
Feedback - Open source responsive template
I'liked. I just wanna pass some tweaks that could be made. On the index don't let the slider change the height of the container based on the height of the slide, because if you are at the bottom of the page the next/prev button change pos…
-
I made a website that shows you a random classic movie, and I need some advice for a better layout.
You could change the controls color to match the film, as you make the background change, I do believe that you have a database with the description, movie URL, background image and the other data (year, genre, etc), you will need add a field for a …
-
Custom RSS/Atom Feeds
Hi Megan. You can do a site with php and mysql, on the database side of things you may need store some things like: Site's Table Site Name (Owner of the RSS/Atom Feed) Feed Address (The URL to the feed) Active (just a flag for your bot). Art…