Fourize
-
A full Critique please!
Like Johnny my biggest issue is with the 'about' page, try splitting it into two columns, also check your copy. 'I am a lover all ALL things techy' Other than that I like it! Nice work. (maybe change the bg image slightly? the…
-
Blink background-color
Or with css... codepen b & g colours are much prettier : )
-
A couple issues with loading and positioning
Hi brent_james If the gap on the right hand side is the issue, it's caused by the webkit scroll bar you've applied... ::-webkit-scrollbar { height:10px; width:7px; background-color:#FFFFFF; } remove that and it will fill the page. Th…
-
Your help, opinions and overall constructive criticism please... :)
Hi Kayleigh, I''ll get the first question out of the way for you, to position it in the center absolutely position it, then apply left and right widths/height and adjust it with the negative margin positioning... may sound daunting but qu…
-
Hey Ya'll! Check out CodePen
Love it! Only quarms are that a js resource isn't loaded as default - had me stumped for a minute. Also that I can't type #. Other than that it worked flawlessly. Codepen example jquery isn't my forte, dont judge : )
-
automatic scrolldown
I don't mind it so much, I'd leave the autoscroll out on the index page though.
-
Stretch a section of page to full height and width
Spot on, thanks Senff
-
Stretch a section of page to full height and width
If I'm right in understanding your question, you would use jquery to get the width and height of the users window and apply that with inline styling to the containers. Each has relative positioning which would allow scrolling. Use firebug and c…
-
CSS / HTML Tutor needed
Have you tried Codecademy for learning jquery?
-
Looking for a good way to do a "terms of service" via lightbox
chris uses a plugin called facebox (or variation of) for his terms of service. can be found here... Facebox hope this helps
-
footer question
Haha jees, now who looks the amateur. For some reason I'd got it into my head the sticky footer method just let everything disappear underneath it. Thanks for the help mate
-
Wide WordPress site scrolls horizontal - Tried everything!
Your div #content has two margins applied to it, id remove the one from line 73. Also your div #colophon in the footer has a fixed width exceeding the containers width, id remove that on line 176 so it's this... #access .menu-header, div.menu,…
-
@font-face
I'd use the @font-face generator. very simple and provides all the code you need to load the font on your site.
-
It would be nice to have post amounts in forum.
I also agree with Brightonmike, with a counting system I find it can often make things competitive, which thankfully there is non of here. Maybe something like a thanking system would help though.
-
how to stop specific jquery functions on mobile devices
I had exactly the same problem today, i ended up using this in my jquery sheet, not sure how reliable it is but it may help... if (screen.width = 541) { *code here }
-
Image lazy load & jQuery filter
after tinkering I built a reasonably reliable filter, Infinite scroll is spot on though! thanks again Mottie!
-
CSS FOOTER PROBLEM: my footer does not auto resize according to the content !!
min-height: 96px; seems to work fine for me. I'm not entirely sure why your using a table inside a UL though, and not just li's?
-
CSS-set background image won't change for other pages
ha sorry, it's just your everyday div that goes around whatever you want to wrap. assuming you can edit the html and php of the site it would look something like this... you content goes in here then the css would be something like... .page-…
-
Struggling with a simple Last-Child
long winded... ul.sidebar-posts > li:last-child > .read-more { border-bottom: solid green 1px; }
-
CSS-set background image won't change for other pages
I'd assume it's because the php that calls in the dynamic content from other pages selects certain sections of it, ignoring the new id you've applied to that pages body. If you can alter the html of each page, trying applying a wrappi…
-
CSS-set background image won't change for other pages
you're exactly right, you could try something like changing the stylesheet when a link is clicked using javascript. I'm not too big on my js or php so can only point you in the right direction... this is what i had in mind... http://www.…
-
CSS-set background image won't change for other pages
do you mean on all other pages, for example this one... http://www.montagemd.com/#2032105/Grey-Goose-Good-Company you want the background image removed and the grey background to fill the screen? as far as i can see, all the pages use the same id…
-
Where to upload my images for JFIDDLE?
this is the url to the first image: http://s4.postimage.org/mdzze1xu9/feat_post_img.png the links you have used in the html section is to the page its shown on. right clicking the image on that page you can copy the actual image url. as for the b…
-
How to Figure Out What File to Edit from Looking at the Source Code
Hi FlaPnthrsPunk, the images in the nav menu are stored in this folder... executivetravellink.com/wp-content/themes/executivetravel.v.1.0/images/ and the css for this starts on line 288 of this file... executivetravellink.com/wp-content/themes/e…
-
How do i make this wonderfully moving background?
no problem at all... .wrapper { width: 945px; margin: 0 auto; position: relative; min-height: 100%; background: white; padding: 0 15px; } just needed to adjust the width of the wrapper
-
How do i make this wonderfully moving background?
replace the .wrapper code in your stylesheet with this one... .wrapper { width: 975px; margin: 0 auto; position: relative; min-height: 100%; background: white; padding: 0 15px; }
-
How do i make this wonderfully moving background?
background: white; padding: 0 15px;
-
How do i make this wonderfully moving background?
apologies! im not sure if you now mean their wrapping div that has a white background applied to it? it centers because it has margin: 0 auto; which is the same you have applied to your wrapping div. apply the same background to your div and give it…
-
How do i make this wonderfully moving background?
quite simple, its just a background image thats repeating on its y-axis! background: url(http://i568.photobucket.com/albums/ss124/design_seeds/Unicorncopy.png) repeat-y scroll top left; they've applied it to the body tag