Forum replies created

    Imran
    Spectator
    Posts: 402
    July 22, 2015 at 4:20 pm #19091

    Hi Patrik,

    Thanks for writing in, would you mind providing the direction about the area where you want to change the size of the text, so we provide you with a tailored answer.

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 22, 2015 at 4:12 pm #19090

    Hi Christian,

    Thanks for writing in,

    Upon checking, it looks good from my computer Firefox browser on mobile screen. I’d require some screenshots of the issue so we can take a look into your setup and provide you with a detailed response.

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 22, 2015 at 1:55 pm #19085

    Hi Richard,

    Upon checking, you are using an old version of the theme alora v2.5.0. So I’d advice to update the theme to alora v2.7.0. Before Updating the theme make sure that you are using a child theme to preserve the current changes. I’d advice to backup your website before updating. backup

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 22, 2015 at 1:16 pm #19084

    Hi Sandra,

    Thanks for writing in,

    If you wish to change the background color of widget title “Get in Touch”, so you can achieve that by adding the following code under Appearance > Theme Options > custom Css:

    #contact_info-widget-2 .widget-title-background {
    background: #030303 !important;
    border: none !important;
    }

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 21, 2015 at 5:28 pm #19074

    Hi Richard,

    Thanks for writing in,

    Please make sure that the Main Navigation option is enabled under your menu option. You can go to Appearance > Menus > Menu Settings and check the “Main Navigation” box, as per shown here: http://prntscr.com/7va5i4.

    Hope this helps!

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 21, 2015 at 4:43 pm #19072

    You’re welcome! 🙂

    Imran
    Spectator
    Posts: 402
    July 21, 2015 at 4:01 pm #19070

    Hi Diana,

    Thanks for writing in,

    Yes, on my iPhone 5 screen, its showing both the sign up and the login button at the top (see: http://prntscr.com/7v93p7).

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 21, 2015 at 2:08 pm #19068

    Hi there,

    Thanks for writing in,

    If you wish to eliminate extra space above your logo on mobile devices and want to make it look something like this: http://prntscr.com/7v7s1v. So you can try adding the following code under Appearance > Theme Options > custom CSS:

    @media only screen and (max-width: 768px) {
    div#righttopcolumn {
    display: none;
    }
    }

    Thanks.

    In reply to Bootstrap Slider
    Imran
    Spectator
    Posts: 402
    July 9, 2015 at 5:26 pm #18726

    Hi there,

    Thanks for writing in,

    If you wish to get the arrows again activated, so you can add this following code under Appearance > Theme Options > custom CSS:

    #bootstrap-slider img {
    top: 200px !important;
    }

    Second, if you want to have your title on the bottom over mobile devices, so you can add the following code in your customizer:

    @media (max-width: 768px) {
    .da-slide h2, #bootstrap-slider .carousel-caption h2 {
    position: relative;
    top: 47px;
    }

    .da-slide h2, #bootstrap-slider .carousel-caption {
    background: none;
    }
    }

    Thirdly, instead of making your title to a link, you can have your button back on mobile devices. If you want to activate the button so you don’t need the code for “title at bottom” and so the following code which you can add in your custom CSS:

    @media (max-width: 520px) {
    #bootstrap-slider .carousel-caption .button {
    display: inline-block !important;
    width: 60%;
    margin: 0 auto;
    }
    }

    Hope this helps!

    Thanks.

    In reply to Next post
    Imran
    Spectator
    Posts: 402
    July 8, 2015 at 3:58 pm #18707

    Hi Ron,

    Thanks for writing in, this is because your title is too long. However, you can try adding the following code under Appearance > Theme Options > custom CSS:

    .nav-next {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    }

    Thanks.