darren
-
Reloading A php script with jquery
Sorry I guess the first one was ajax anyway, thanks for the link!
-
Reloading A php script with jquery
So you think it might be the plugin that is causing the error? Should I call the script just like I was before?
-
Large Store Advice
Magento is definatly a e commerce script made for larger stores, I recently learned about this script and have been just getting into the theming side of it but it would be my suggestion out of the ones you have mentioned
-
[Solved] Custom Page Template Help
I got it fixed, it was a combination of not naming the default page.php and also using theme switch, its all good now though thanks for the help doc
-
[Solved] Custom Page Template Help
Yep I put it there, i have used custom page templates before with previous versions of wp. I don't know whats different now
-
Hover glow effect?
The css part of it is easy you would just need to create a background image with the hover effect you want, #nav a:hover{ background-image:url(hover.jpg); } This way it wouldn't be as smooth as it is on that flash site, but there is a way to…
-
[Solved] Errors on Validation
Hey again, im not a 100% sure but I think if you put background: transparent on the divs that are wrong
-
Putting It Together
You must have got it fixed since i was just on the site and it looks perfect
-
Putting It Together
I don't quite know what you mean, do you want the link to show up blue when you are on that page? If thats the case, you would have the put a class on each of pages on the button that coresponse to the page your on. DERBARÊ ME SÊRVÎS PORTFOL…
-
Putting It Together
Its up to you really if the other pages are very similar it would be better to use the same style sheet, but if they are way different use a new one
-
Putting It Together
Depends what you want to do, for your other pages do you want the three rows or do you just want two, depends how you want the rest of the pages to look. If they are the same as the home page you can just copy all the code and add different text and…
-
Putting It Together
I would say for that I would put them in an unordered list. then set the padding for ul,li and display:inline; this should work
-
[Solved] Sticky Footer Problem
You must have looked at it as soon as I thought to paste the origional style into the wordpress one. About 4 hours of messing around with it thinking it was a sticky footer problem when it was a style sheet oversight. Lesson learned and I dont think…
-
[Solved] Sticky Footer Problem
Well I fixed that problem above seems I had the reset link below my actual style sheet. So it was taking the background color and making it white. But as I was figuring that out I seem to have messed up my footer completely. the background for the d…
-
Putting It Together
Im not sure bud, im also a newbie only a couple of months experience..As you probably noticed Im looking for help on here. Helping you seems to pass the time while waiting for my own help haha.
-
Putting It Together
You want 3 text sections for that middle section, going by your psd it looks perfect to me
-
Putting It Together
I thinkk this is what you have in mind .separator { margin-left:400px; margin-top:-123px;
-
[Solved] repeat-y Help
Its because your sidebar isn't as long as your main content. Put this code in your header. function equalHeight(group) { tallest = 0; group.each(function() { thisHeight = $(this).height(); if(thisHeight > tallest) { tallest …
-
Putting It Together
do what I did here, but with a bigger sample of the pattern so it doesnt look so choppy, http://www.webbeginner.net/help
-
Putting It Together
Yep looks a lot better now, did you figure out what your going to do with the background yet?
-
(solved)Something Weird happening with css
Still cant figure out whats going on with this if anyone else wants to take a look
-
Putting It Together
Ok I didn't check it with IE, you much be using it. I think it's something to do with the background image not being able to be used. Im pretty new at web design too, only a couple of months now. So my suggestion would be, bring it back t…
-
Putting It Together
Oh I dont know whats up, ill upload it on my server and you can copy the code straight from there, http://www.webbeginner.net/help Just look at the source and css file and copy it
-
Video tutorial help
could you send a link to the website so we can look at the code
-
Putting It Together
Alright so I got this for ya, use a bg image for the logo. #logo { float: left; background-image:url('http://www.kurdwd.com/_images/logo_03.png'); background-repeat:no-repeat; height: 199px; width: 330px; margin-left: 65px; margin-t…
-
Putting It Together
Im not sure why it woln't align left, You could try #ctop h1{ margin-left:-100px; } Then when you have the text on the bottom of it set the width in the tag, because ctop width is alot bigger than the text area, #ctop p{ width:800px; mar…
-
Putting It Together
"TheN00b" said:Thank You Darren :) I do not understand why the text is so high up ! I would have thought they would appear in the buttons ! Can you please tell me how I'd sort that out. Thank You. Take the class of alt right off …
-
Logo Disappearing in IE
Seems to be working for me in ie, what version ie are you having the problem with
-
[Solved] CSS Positioning Problem
It seems like the containing div isn't big enough to show the bubble. Try putting overflow:visable; on the containing div. I didn't really dive to deep into your code but try this..