shagzdesign
-
Freelance websites
Well I'm actually looking for a freelance programmer to code an iPhone app for me, not looking to get work, just thought some people here would know some reputable sites. Thanks for the advice though.
-
jquery image expand/shrink on hover
Sorry for the double post, just make sure that you change the name of the ul to what you have it named in your code, in my example it's ul.gallery li, yours will obviously be different and I didn't make the comment in my code example. My …
-
jquery image expand/shrink on hover
$("ul.gallery li").hover(function() { $(this).css({'z-index' : '10'}); /*Add a higher z-index value so this image stays on top*/ $(this).find('img').addClass("hover").st…
-
CSS Dropdown menu -- for the iPad?
They mean that Mobile Safari translates the drop down menu's hover to work with a click. Meaning that when you are using Mobile Safari you press once on the drop down for it to open, and then again on your selection.
-
styling unordered lists / li's etc....
apply the margins for left and right to the li's not the div, it will space them out inside of the div
-
styling unordered lists / li's etc....
First thing you'd want to do is put your ul in a div with a width of 1000 px, then just set a margin-left and margin-right of 5 px and you should be good on your list, then set a margin: 0 auto to your div to center it in the screen
-
Menu not working in IE
I tried looking, but apparently you are working on it, since it seems the page is different everytime I refreshed it, then the page was completely gone, I'll check back in a few hours and see if you got it all sorted out.
-
Trying to come up with a Personal Business Name / Logo for my site
It really depends on several things, personal preference being the biggest, but you will also want a logo that will match the color scheme and typography of your site, I do a lot of logo designs, you can hire a freelance designer, or you can go post…
-
[Solved] Using other companies' logos
if you ask, most companies probably have a greyscale or black and white copy of their logo that you can use on the site anyways
-
Z-Index in Chrome
Nope, still got the routeone button in FF, didn't check the others.
-
Z-Index in Chrome
I'm on PC and I can see both both buttons in FF, of course the Herbal TV is just an image right now as it doesn't link to anything, and its below the vid player
-
[Solved] ul navbar - centering problem with IE
remove text-align: left from your #wrapper and it should fix your problem
-
*[Solved] Hyperlinks not working...? - Unsolved: IE7 Positioning Issues
remove the z-index from here and it works fine #contentwrapper { overflow:auto; position:relative; top:-75px; width:100%; z-index:-1; }
-
[Solved] -webkit-transform not working?
can you post a link to the live code that way someone might see something you missed?
-
[Solved] content not inside the div
just add overflow: hidden; to your porfolio item and that will fix it.
-
font sizing
most reset.css do include em { font-size: 100%; }
-
Whack alignment in Firefox.
IE6 is still used by about 7% of the population, with IE7 accounting for another 8% and IE8 coming in at 16%, 7% can be a substantial number of potential customers to a client, especially depending on what demographic they are looking to reach, old…
-
[Solved] Protect css file with PHP
I guess the real question is this, is there a specific reason you want to protect your css? Are you trying to hide the url's of original images? That's really the only reason I can think of to protect it, but there are other ways to prot…
-
[Solved] Padding/Margin-top/spacing Issue
IE7 was adding a default margin to each div you had inside the mainview div, which was adding a lot of bottom margin, so using the -300 took that margin away for all browsers, adding just that would have caused none of your images to show, so we add…
-
[Solved] Padding/Margin-top/spacing Issue
.main_view { float: left; position: relative; overflow: hidden; margin-bottom: -300px; make this change in your style.css and it works fine, I only checked this with IE7 and IE8 so be sure to check all other browsers of course.
-
[Solved] Padding/Margin-top/spacing Issue
Is it doubling them? If it's just doubling the space which is common for IE, if you put an underscore and cut the margin in half, IE will interpret it as a typo and make the change, whereas modern browsers will ignore it, what I mean is this …
-
Opinions Please
Well I changed the font color to white, I will be adding some sections to the site that will generate quite a bit more traffic, but I'm already way over the benchmarks for sites of this type. I'll be posting some tutorials and a forum soo…
-
Hmm, One page website video tutorial
I think you are talking about the page scrolling to the divs (am I right?) to do that , you would have all the divs on one page with unique id's and the navigation at the top links to the #id on the same page making the page scroll to that spec…
-
First Attempt at a Web Design Mockup
Not bad, but I might recommend for someone just trying to learn the Adobe suites, to start off with Fireworks first. The it's specifically designed for a web design workflow, it has more control over certain aspects than PhotoShop does, and is…
-
[Solved] 2 javascript buttons with different scripts, but both buttons do the same thing...
Add a this.form.action='....' to your other submit button action. Currently you have // and // // ]]>
-
My Portfolio - Feedback and some issues please
Your div on the right is pretty good, but if you are on "about us", and click on "contact us", the portfolio flashes in a way that's unattractive (to me personally anyways). maybe try absolute positions for the 3 id's l…
-
Jquery Help?: Add easing to .slideUp() and .slideDown()?
http://www.sohtanaka.com/web-design/simple-accordion-w-css-and-jquery/ A lot of people will suggest using a fixed height, but if you check out the link above you'll see that you shouldn't have to and you can get rid of the jump. The arti…