Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #23123

    Hi there,

    Can you tell me how to change the size of the fonts in the Footer, namely the widget header titles and main content?

    Can you suggest an easy but flexible Flickr widget that I can use in the footer that will compliment the theme and not screw up everything. Ive tried a few and its just a mess.

    Cheers

    #118606

    Hi,

    I haven’t tried using Flickr plugin within the theme but there are lots of plugins available. To name a few

    http://wordpress.org/extend/plugins/awesome-flickr-gallery-plugin/

    http://wordpress.org/extend/plugins/slickr-flickr/

    http://wordpress.org/extend/plugins/flickr-api/

    You can change the widget title with this

    #footer .widgettitle {
    font-size: 21px;
    }

    And the content with these

    .widget {
    font-size: 14px;
    }

    .minitext {
    font-size: 14px;
    }

    Adjust the value.

    Regards,

    Ismael

    #118607

    Thanks for this…

    in regard to using a Flickr plugin I have used Slickr Flickr before so Ive set it up and have place some CSS to turn it into a 4 row by 3 thumbnails whiich appear in column 3 of my footer.

    In a previous theme I had help setting up some Java Script to enable me to get the thumbnails to glow on rollover. The theme had a similar CSS window in the theme styling as yours but also had a Java Script window where the script was placed. Where do I put this within Enfold? I assume its a PHP file? do I have to add anything to the code/format to make it work and where should it be placed?

    Cheers

    Here’s the code…….

    Query(‘.slickr-flickr-gallery ul li a’).hover(

    function()

    {

    jQuery(this).stop();

    jQuery(this).animate({‘opacity’:’0.75′}, 200 );

    },

    function()

    {

    jQuery(this).stop();

    jQuery(this).animate({‘opacity’:’10’}, 100 );

    });

    #118608

    Hi andypeck,

    You can add in your own javascript to the avai.js file within the theme files, or use a plugin that will allow you to add it in through the wordpress admin if you don’t want to go through ftp.

    Regards,

    Devin

    #118609

    Hi,

    Maybe you can add that on js > avia.js, find this code then place your code above it.

    //
    
    // responsive menu function
    //

    Regards,

    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Enfold – FOOTER Fonts sizes & Flickr plugin’ is closed to new replies.