cybershot
send me your email
-
I want to add a slide option in my website header and footer.
Yes. It is a forum for help. But your not asking for help. Your asking for someone to make it for you. There are thousands of tutorials online for integrating sliders into WordPress. Find one you like and follow it. If you run into trouble, post her…
-
first-child issue
Ok, I understand now. That is what was happening. I had other things in the container. So I am trying to add another layer to better target the container.
-
I want to add a slide option in my website header and footer.
for a price, anything can be done. What is your budget
-
I want to add a slide option in my website header and footer.
so what is your question?
-
Wordpress comments doomed :-(
when I develop a wp theme, I use one of the frameworks available. I have never had any issue making comments work. My favorite is starkers naked wordpress theme
-
responsive help
I tried it and it still isn't working. There must be something missing for media queries to work
-
responsive help
I have a slider in my theme. So I tried this directly in the css file @media only screen and (max-width : 480px) { #slider { display: none; } } } It does not work. If I go to the site on my cell phone, the slider is still there. Is there someth…
-
background position?
actually, your idea would have worked. I figured it out with css. It's just sometimes, my brain just doesn't think clearly. background: url(images/marker.png) no-repeat 7px;
-
background position?
I tried that already. putting a number there moves the marker up and down. Not left or right
-
help with dropdown
This is exactly what I have now http://jsfiddle.net/FgdCk/3/ the black represents my background on my site. So the dropdown will begin just under the black background as it does in the example. So, as you can see. The line-height:100px and the ver…
-
help with dropdown
for the sake of the design, I need the line-height: 100px and the vertical-align: middle. I found that for me, this is the best method to align the menu directly in the middle. When I change it to what you said, it puts the nav at the top of the co…
-
jquery issues
I solved it this way $(document).ready(function(){ $('#contact_form').html(""); $('#success-message').html("Contact Form Submitted!") .append("We will be in touch soon.") .hide() .fadeIn(10, f…
-
jquery issues
I am using the php to check that it got sent. then I am putting in some jquery to display the success message. I disagree with you that it is bad design as php works very well with html and javascript mixed. Also this is pretty much an accepted prac…
-
jquery issues
It didn't work. What is wrong with the success message?
-
what am I missing here?
yea, the only problem is that I am making this template for sale on themeforest and they have a policy about things not lining up correctly. That 1px gap could be enough to destroy the layout as far as the reviewers over there are concerned. Also, t…
-
what am I missing here?
the strange thing was that when I removed the line-height altogether, the h1 text jumped half way outside the containing div. So it sat about 15 pixels higher than it should have. If anything, I expected it to sit right at the very top of the contai…
-
what am I missing here?
well, I seem to have fixed it by setting the line-height of the h1 tag to 23px. The font-size for the h1 tag is 30px;
-
what am I missing here?
I agree that it's not a huge issue but finding a solution does increase ones understanding of coding all together. I see no reason as to why this is happening. I wonder if it is just the fact that I am using @font-face to generate the text?
-
what am I missing here?
.post .date { width: 95px; float: left; margin-right: 15px; } .post .date span.month { background: #3db4c3; border: 1px solid #1f8692; width: 94px; height: 29px; display: block; line-height: 29px; vertical-align: middle; text-align: cen…
-
what am I missing here?
I already have that css reset in place. the code is rather simple. two div floated left. h1 which is the help in the picture above h1 { font-size: 30px; color: #3d4852; padding: 0; margin-top: 0 } that gives me the above photo. Just can'…
-
javascript help
thanks Doc, I missed the e in the function(e). That is why it didn't work. It's working now.
-
css help with backgrounds
figured it out. I put the span inside the h1 tag instead of outside, put the repeating background on the h1, and the background color on the span with display: inline-block;
-
help with list items
thanks for the help guys. I did solve it by putting each item into a seperate ul. I added your fix wolfcry and it seems to work so I am going to stick with that as it is cleaner code thank my solution. Thanks for the help.
-
need a background trick
Thanks to everyone who contributed to this post. I went with the position fixed and then z-index: -1 on the right-background and it worked like a charm. I never would have thought of position: fixed.
-
need a background trick
I would position fixed cause the background of stretch to the bottom of the screen?
-
need a background trick
I thought about going the way you are talking about simoncmason but thought I would try this other way first. It would have worked fine if the html and body stretched 100% height. I can't figure out why it won't. Everything I have research…