Forum Replies Created
-
AuthorPosts
-
Hi,
Actually, you can.
.image-overlay.overlay-type-extern .image-overlay-inside::before{content: url(../images/layout/loading.gif);}
.image-overlay.overlay-type-video .image-overlay-inside::before{content: url(../images/layout/loading.gif);}Regards,
Ismael
Hi,
You didn’t follow the instructions correctly. Cut this code
$phone = avia_get_option('phone');
$phone_class = !empty($nav) ? "with_nav" : "";
if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";Now, paste it under this code which is the code responsible for the logo.
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Add this on your custom.css to position the phone number correctly.
.social_header .phone-info {
font-weight: bold;
height: 30px;
line-height: 10px;
right: 200px;
top: 40px;
position: absolute;
}
.social_header .phone-info.with_nav span {
border: none;
}Regards,
Ismael
Hi,
Go LayerSlider WP > Select a slider > Global Settings > Basic > Slider width. 1030 seems to be the exact width.
Regards,
Ismael
Hi,
You can use Media Queries to target the text on different screens.
@media only screen and (max-width: 767px) {
p.ls-s-1 {
position: absolute;
left: 50px !important;
font-size: 25px;
}
}Don’t remove the !important.
Regards,
Ismael
Hi,
You can set an excerpt for each post. Edit the post, look for Screen Options (top right), tick the Excerpt option. You can place the excerpt there.
Regards,
Ismael
Hi,
Please follow these links.
https://kriesi.at/support/topic/mega-menu-bug#post-108100
https://kriesi.at/support/topic/header-background-image-2
Regards,
Ismael
Hi,
1.) Create a page, look for Advance Layout Editor. Under Content element, select and insert Portfolio Grid. Save the page. Voila! You have your Portfolio page. All you have to is to create Portfolio Items.
2.) You can insert an Image element then set the link manually. Insert a video link. When you click the image it will open up a video lightbox.
3.) Do instruction number 1, this time edit Portfolio Grid element then select Which categories should be used for the portfolio?
You can watch tutorial videos here https://vimeo.com/channels/aviathemes.
Regards,
Ismael
Hi,
Just add this on your custom.css
#top .main_color input[type="text"] {
border-color: gray;
background-color: red;
color: blue;
}Regards,
Ismael
Hi,
Open functions-enfold.php then find this code
function avia_post_nav($same_category = false)
Replace it with
function avia_post_nav($same_category = true)
Remove browser cache the reload the page.
Regards,
Ismael
Hi,
You are correct. If you measure 2 column portfolio without sidebar, the thumbnail size is 514x415px. So you need to make up your mind. If you are going to use the 3 column portfolio you can change this line on functions.php
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
Replace it with
$avia_config['imgSize']['portfolio'] = array('width'=>342 'height'=>276 ); // images for portfolio entries (2,3 column)
If you like to be specific with the 2 column portfolio view without sidebars, use this instead
$avia_config['imgSize']['portfolio'] = array('width'=>514, 'height'=>415 ); // images for portfolio entries (2,3 column)
The exact thumbnail size for 4 column portfolio inside the container is 257×183. You can modify this line
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
Regenerate the thumbnails using this http://wordpress.org/plugins/regenerate-thumbnails/.
Cheers,
Ismael
Hi,
I can’t reproduce the number 2 issue on my end. You got a sharp eye, it takes me minutes to see the difference, might as well be the case for other visitors who will visit the site. In my honest opinion it is not really a big deal. A link to your website will help.
Regards,
Ismael
Hi,
Please try to add this on your custom.css or Quick CSS
.avia-video iframe, .js_active .avia-iframe-wrap iframe {
position: absolute9;
width: 100%9;
height: 100%9;
display: block9;
}Regards,
Ismael
Hi,
You can manually apply the background color on your Quick CSS.
Example:
.header_color .header_bg {
background-color: #EF7C0B;
}
.main_color {
background-color: #EF7C0B;
}Cheers,
Ismael
Hi,
1.) Go to Enfold > Sidebar > Page Sidebar navigation, select Display sidebar navigation.
2.) Edit footer.php then find this code
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");
You can edit that line or remove it.
Cheers,
Ismael
Hi,
Try this one. Please remove browser cache the reload the page. It is working on our end.
.boxed#top {
-moz-box-shadow: 0px 30px 30px #000;
-webkit-box-shadow: 0px 30px 30px #000;
box-shadow: 0px 30px 30px #000;
}Can you give us a link to your website?
Regards,
Ismael
Hi,
9 means for IE8 and below.
Can you give us a link to your website?
Regards,
Ismael
May 24, 2013 at 2:43 am in reply to: IE8 : featured posts image in blog posts element not cropped correctly #120332 -
AuthorPosts