Forum Replies Created

Viewing 7 posts - 16 through 22 (of 22 total)
  • Posted in:
  • in reply to: Shop Title Page & Category Page #55731
    sobrilliant
    Member
    Post count: 22

    thank you very much 🙂

    in reply to: Shop Title Page & Category Page #55688
    sobrilliant
    Member
    Post count: 22
    This reply has been marked as private.
    in reply to: Shop Title Page & Category Page #54717
    sobrilliant
    Member
    Post count: 22

    Hi Mohammad, of course thank you for you’re quick response,

    on this page: http://www.b1msuk.net/builds/mb/shop/

    the title “elephant mask” shouldn’t be there, that is the default shop page? But it’s taking elephant mask as that was the last product published. I tried to remove the title all together in the page settings but it still remains. The same is for a shop category. Except i managed to hide it using CSS but i dont want to hide it with CSS as google will still read it.

    in reply to: portfolio carosel #818
    sobrilliant
    Member
    Post count: 22

    thats perfect with a little extra customisation you can see it here 🙂

    http://demo.s3msuk.net/megab/

    is there anyway i can change the direction of the scroll?

    in reply to: portfolio carosel #728
    sobrilliant
    Member
    Post count: 22

    hi, this should already be built in?

    http://sorgalla.com/projects/jcarousel/examples/static_auto.html

    Autoscrolling is enabled and the interval is set to 2 seconds. Autoscrolling pauses when the user moves the cursor over the images and stops when the user clicks the next or prev button. wrap is set to “last”.

    in reply to: portfolio carosel #578
    sobrilliant
    Member
    Post count: 22

    Thanks taking a look at this function being:


    /////////////////////////////////////////////
    // CAROUSEL FUNCTIONS
    /////////////////////////////////////////////

    var carouselWidgets = {
    init: function() {

    carouselWidgets.windowResized();

    // CAROUSELS
    var carouselWrap = jQuery('.carousel-wrap'),
    carousel = carouselWrap.find('.carousel-items');

    carousel.jcarousel({
    scroll: 1,
    wrap: 'circular',
    buttonNextHTML: '',
    buttonPrevHTML: ''
    });

    jQuery(window).smartresize(function(e){
    carouselWidgets.windowResized();
    });
    },
    windowResized: function() {
    var testimonialCarousel = jQuery('.wpb_testimonial_carousel_widget');

    testimonialCarousel.find('li').each(function() {
    jQuery(this).css("width", testimonialCarousel.width());
    });
    }
    }

    I added auto: 1, as shown below


    /////////////////////////////////////////////
    // CAROUSEL FUNCTIONS
    /////////////////////////////////////////////

    var carouselWidgets = {
    init: function() {

    carouselWidgets.windowResized();

    // CAROUSELS
    var carouselWrap = jQuery('.carousel-wrap'),
    carousel = carouselWrap.find('.carousel-items');

    carousel.jcarousel({
    auto: 1,
    scroll: 1,
    wrap: 'circular',
    buttonNextHTML: '',
    buttonPrevHTML: ''
    });

    jQuery(window).smartresize(function(e){
    carouselWidgets.windowResized();
    });
    },
    windowResized: function() {
    var testimonialCarousel = jQuery('.wpb_testimonial_carousel_widget');

    testimonialCarousel.find('li').each(function() {
    jQuery(this).css("width", testimonialCarousel.width());
    });
    }
    }

    when i added it below scroll: 1, it didnt work, when i put it above it worked BUT it doesnt stop on hover like it should? am i doing something wrong?

    in reply to: sliding menu problem (only macintosh see)) #516
    sobrilliant
    Member
    Post count: 22

    if you dont want to use a drop down what i’ve done on my site is removed the search and login area (simple code change if you know how to use a gridsystem in header.php) and obtained these result:

     

     

Viewing 7 posts - 16 through 22 (of 22 total)