kaine
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: full width images in twenty eleven themecheers for the quick response but unfortunately that is a lil over my depth (still learning).
was under the impression it was a simple matter of manipulating the CSS to remove the margins around attached images, or maybe by increasing the content width, however i have no idea where or how to do any of the above and trust me I’ve tried for ages, cheers in advance. I ideally just want the picture to fill up the full width of the site i.e to take up all the space that is currently white as well.
Forum: Fixing WordPress
In reply to: calling jquery file breaking other site plugin appearancethanks for your response, question is though if jquery is already included then why is the menu not working without it, if it isnt too much trouble could you show me a no conflict version of the script i have posted using the $ shortcut, million thanks
Forum: Fixing WordPress
In reply to: where to add jquery javascriptBTW, looking at the CSS in the above linked tutorial, would anyone know how to format the text so that it is not centered but at the very bottom of the tab, the only aligning I seem to be able to find is for left right and centre, is it perhaps a question of changing padding or something ???
Forum: Fixing WordPress
In reply to: where to add jquery javascriptJust in case anyone else stumbles into the same issue with the tutorial above and others like it, its solved by inserting
` <script type=”text/javascript” src=”jquery-1.3.2.js”></script>
<script type=”text/javascript”>
$(function() {
var d=300;
$(‘#navigation a’).each(function(){
$(this).stop().animate({
‘marginTop’:’-80px’
},d+=150);
});$(‘#navigation > li’).hover(
function () {
$(‘a’,$(this)).stop().animate({
‘marginTop’:’-2px’
},200);
},
function () {
$(‘a’,$(this)).stop().animate({
‘marginTop’:’-80px’
},200);
}
);
});
</script> `just before the </body> tag in footer.php In my case the jQuery file mentioned above is uploaded in my wp installations root directory. Cheers and hope that’l help someone else
Forum: Fixing WordPress
In reply to: where to add jquery javascriptthanks a million for your help, finally got it sorted, I put it at the bottom of my home.php file and it works, I had tried this before but it didnt work because I didnt know how to nest it (i think thats the right term 🙂 have a great one
Forum: Fixing WordPress
In reply to: where to add jquery javascriptThanks for the response but as I explained Im pretty new and what Im trying to find out is EXACTLY where in wordpress I should put javascript. Which of the files representing space before the </body> tag does this javascript belong in, again cheers for your help