Everything posted by SimpleSucces
-
PNG Transparency problem
Thanks for your insight, i've tried saving it with GIMP but the image quality turned out really bad because of the transparency pixels. If you don't check that it will just use the color in full opacity, therefore messing up the image basically. I might just set a max-width for Chrome browsers if this keeps up, but i will try to find another solution if there is one.
-
PNG Transparency problem
Yeah as i said in the original post, it's only on Chrome.
-
PNG Transparency problem
Hey guys, I'm working on a project involving parralax. I have a page (or scene if you will) which has multiple Images in a list. My problem is that on a screen with a resolution of 1920x1080 pixels a part of the page turns black. I have been trying to fix this issue by using PNG24 which apparently is best for having resized images with transparency, but alas, it didn't work for me. In addition, the logo also disappears when using the parralax when using the parralax. This freak like issue (it is to me anyways) is only happening on Chrome. Firefox, Safari and the other major browsers perform fine with these images. Any help would be very much appreciated. the URL is: http://66943.glr-imd.nl/project
-
how can i learn css and latest version of css?
Codecademy is a great site indeed! They explain everything very well and give you lots of info as to why you use different methods!
-
Fancybox or other lightbox jquery
^^ iFrames are usually heavier to load than just putting your content in a textbox. Additionally, it's easier to edit your content if it's all in one page rather than having to navigate to your iFrame url's every time you want to change something.
-
Fancybox or other lightbox jquery
I don't think iFrames are the way to go here. Fancybox has the ability to show text (Although the purpose is for a title) with an image, so you should be able to restyle this to your needs.
-
sliding footer - loading
Is this jQuery? If so, you can probably set the height of the contact element when the page is loaded, so you can incidentally set it to 0. Also, check if the jQuery is loaded AFTER the rest of the document is loaded, this is typically done using this piece of code: $(document).ready(function() { //Run code when the page is fully loaded //Your code here });
- Help making website.
-
Pro's and Cons - Responsive Templates
Because certain themes have full responsive layouts built in, of course not all of them, but there is a fair amount of options with responsive themes already. However, you are right, there is always the option to use plain HTML/CSS in the CMS layouts, but as there is a lot of built in functionality available i assumed it's a given someone wants to use its functionality.
-
Pro's and Cons - Responsive Templates
So i've been wondering what you guys think about responsive template such as bootstrap. Personally, for now i like to work from the ground up because 1) A better learning Experience 2) I feel more in control. Obviously when Wordpress or another equivalent CMS comes into place the whole subject changes, but let's not take the CMS into account this time What do you think about Responsive templates? Yay or Nay?
-
Moan, Grumble, Whinge...
E-mail compatibility, that'd be all. *BANG*
-
Moan, Grumble, Whinge...
While working my computer decides to take a break and just turns off, no warnings, not restarts, just *poof*. Conclusion: My PC hit puberty.
-
Pencil or Pixel?
I usually start in PSD, but if i need to get the idea and features on the table i create a mindmap with little doodles that roughly visualise how i see features etc. being used on the web. Then when i have a basic layout, i start coding and continue adding/modifying certain things from there.
- NEED HELP! Contact From PHP
-
Moan, Grumble, Whinge...
Ugh, Mother Nature hates me. Thought to travel towards the sun when i went to Bosnia, instead, the sun decided to travel to where i live. And vice versa >.<
-
My first Attempt
Made yet another version, i hope i can get some feedback on this? http://i1081.photobucket.com/albums/j358/oooppss1/Main_zpscac2b66c.png
-
alternatives to dreamweaver
Looks pretty Sweet, i got used to it real quick though, i always used Dreamweaver before, which was good for beginners, so when i started using PsPad i had to train myself in knowing the exact spelling, syntax, etc. PsPad is simple enough when you find out where what you need is. (Very easy to switch from one FTP address to another as well)
-
alternatives to dreamweaver
I use PSPad myself, it's free as well, i personally like it.
-
Foot firmly in mouth
I am just a beginner, but i'd like to help out as well if there is something to do!
-
Characteristics of a Good website
Hi guys, I was wondering what you think is an absolute neccesity in terms of having a good/well functioning website. Thinks of both the technical aspect and the Design/User Experience aspect. (I am aware that this is a very broad question, but that makes it all the more interesting.)
-
Animated gradient
Well, i'm awake o.O
-
CSS photo gallery display
Thanks for the link (and help for that matter) I've been looking around those places as well, but cannot seem to find a proper solution, i'm gonna try it on a different computer with Firefox just to see if it's just this one that ignores it. And i'll share it here Thanks again, much appreciated
-
CSS photo gallery display
Just tried it, and still does not seem to work.. It's not some sort of gamebreaker for me, but it does raise questions..
-
CSS photo gallery display
^^ It was quite simple really: I used this: (not the specific styling, just an example.) @media screen and (min-width:960px){ body{ background-color:#000; /* Or any code for that matter */ } } in the CSS, and i called is like this: (Again, it might've been called different) <link href="/css/style.css" rel="stylesheet" type="text/css" /> It might've been my browser, because it DID work on all other browsers
-
CSS photo gallery display
This reminds me, i've tried to use @media-screen in my CSS, and it worked on all (compatible) browsers except Firefox, i disabled all plugins etcetera, but with no avail. Instead, i assigned it through HTML, which worked fine. But still, anyone an idea why it wouldn't work?