Forum replies created
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.
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.
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.
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.
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.
You’re welcome! 🙂
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.
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.
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.
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.