Cyanoxide
-
Video vs Text tutorials
I definitely prefer video tutorials/screencasts over the normal text and images format. Not only do I find the information easier to digest when I can see it happening on the screen, I also like the fact that with a screen cast you get an insight on…
-
CSS Position below bottom of page
Cheeky thread bump Didn't see any rules against bumping and the thread fell off the first page without a comment, hopping it just got missed and I don't want my diagram to go to waste.
-
Spread Classes Evenly Within Wrapper
I think you are looking for this code. It applies 0px right margin to every third press holder and it's offset by one to account for the various elements that are effecting it. .press-holder:nth-child(3n +1){ margin-right:0px;
-
Elaborate CSS Gradient
Much appreciated, I'll see which one works best when I open everything back up tomorrow. Cheers for the info too, Conical gradients would make life so much easier. I designed the background for my website in photoshop for my mock up and didn…
-
Elaborate CSS Gradient
@ChrisP That second one is spot on what I'm looking for. Never used Codepen before, assuming it's quite a useful tool now. Much appreciated.
-
Elaborate CSS Gradient
At a glance that article may be straight over my head but I will definitely look into it. I was under the impression that radial gradients worked with the same principle as vertical or horizontal with one line of colour alteration only stretched aro…
-
Starkers: No Closing PHP Tag
I'm pretty sure this isn't an error. I've noticed it in the past and I'm fairly confident the functions file gets gets imported into the PHP of another file (or files) within Wordpress. the closing tag is most likely included in …
-
Wordpress custom menu action - newbie struggling
Wordpresses' wp_nav function needs a bit of CSS for drop downs to work which I'm assuming you already have implemented. You should have a piece of CSS like this: ul.menu li.hover > ul.sub-menu{display:block;} This code basically says…
-
Page Anchors and how Google Treats Them?
I can't say 100% that Google and other Search engines archive different #strings in the url as separate urls or not but the best way in my opinion to make sure everything points to the right places is to use 301 Redirects. I noticed that you a…
-
Creating Designs without Photoshop
I must admit that Photoshop is like a second home to me when working on websites, I always spend a lot of time designing my ideas in there but you don't need to be a genius in the design department to benefit from using a program like photoshop…
-
Web Portfolio initial design critique/feedback
@howlermiller If that's the case then I'll fire you a private message but I'm sure I should be able to get my head around it when I get to that stage.
-
Web Portfolio initial design critique/feedback
@Maxisix Aha thank you, mind you I'm in love with that font, what would you recommend instead? Open to suggestions. @Howlermiller I just had a quick glance at your post and I imagine it will make more sense to me once I've read the video/…
-
Web Portfolio initial design critique/feedback
Well thank you very much for the comment. I've never really tried using Sass or Compass so it could be a nice excuse to try one of them out. The only downside I'm seeing is that with the way you suggested I won't be able to include an…
-
Img Box Shadow (Exception Help)
If you give your logo an id/class in css and add the following to it it should do the trick for you. box-shadow: none; For example, if your logo's class name is logo: img.logo{box-shadow:none;} If you plan to be using the exception multip…
-
IE 7-8 Dropdown Menu Fix
Senff, you are a life saver. I've been trying all sorts of things to get that working (though I assumed the issue was to do with the styling of the drop-down and not the objects behind), main reason the code is looking so messy right now. I…
-
Removing content with Media Queries
Cheers that did the job, I was targeting the section and not the last child and I'm aware that I don't have around them, it's because I've got a list inside that list and it was the only way I could think of doing it so I could …
-
Removing content with Media Queries
But doing that on such a wide width would not match up with the size of everything else, I realise that I didn't include a link so I will add one so you can get a better understanding: http://www.jamiepates.co.uk/Express
-
CSS Tricks homepage & Firefox 6
Only seems to effect the homepage, this page and any others with posts on it are unaffected.
-
CSS Tricks homepage & Firefox 6
Just updated to 7 beta and it's still the same.
-
Font defaults in different browsers
I don't think the margin/padding is the issue here as everything is even on the left still, I'll check it out though and to TheDoc, font size noted I normally work with Tahoma for body text and it's notably bigger than Georgia, as for…
-
[Solved] Protect css file with PHP
If you want my opinion on this I wouldn't bother, blocking the css is fairly inefficient because of add ons like fire bug, you can block them in view source but that's a static text file, the add-ons however don't pull from that text …
-
Horizontal scrolling problem.
Words can not describe how much of a legend you are, I'll look up how to fix it in ie tomorrow, thank you.
-
Small border issue
I figured out a solution and thought I'd post it on here just in case someone else had the same problem, my solution is in no way the most effective way but it gets the job done and I see no flaws with it at the moment. As my original way to g…
-
Small border issue
Thank you, I don't normally like cheating like that but it's done the job so I can live with it, feeling a bit silly now because I didn't think of that solution despite there being a screen cast on here about it. Again, thank you. Ac…
-
PSD to HTML5/CSS
This seems like a good place to start, I would advise that you separate the two main content sections as well just for ease of access make something similar to this Over-header Header Feature Main-content additional-content footer I personally wo…
-
Character encoding errors maybe?
I have already tried both, It seems to work fine when I restrict all of the browsers fonts
-
Tables, divs and browsers
Thank you, I've handed it to my client and he's very pleased with it.
-
Tables, divs and browsers
Thank you, as soon as you said you can change tr and td in css I realised how to do it but thank you very much for the help, I appreciate it very much. On my resolution it seems to be working perfect in both browsers, any chance you can check in yo…
-
Session_start(); errors, need help ASAP
Yea, that was the problem, I used Notepad++ and encoded it to UTF-8 without BOM and it did the trick, thank you so much (: