Forum Replies Created
-
AuthorPosts
-
Hi,
Open js > prettyPhoto > js > jquery.prettyPhoto.js, find this code
allow_resize:true
Replace it with
allow_resize:false
Remove browser cache then reload the page.
Regards,
Ismael
Hi,
It seems to be working fine on my end although when saved the editor becomes blank sometimes. This is what I have.
Regards,
Ismael
Hi,
The latest update 1.4 added the WooCommerce support to the theme and fixes few minor bugs. You will see another folder named config-woocommerce. The version number may have been forgotten. You can change that on style.css,
The triangles are there. I don’t know why it is not displaying on your end. This what I have on my Enfold installation.
Can you give us a link to your website?
Regards,
Ismael
Hi,
For the menu you can use this
#top .main_menu .menu li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-size: 12px;
font-weight: 600;
font-size: 13px;
font-family: Helvetica;
}For the submenu, try this.
#menu-sub-menu a {
font-size: 15px;
color: red;
}Regards,
Ismael
Hi,
You can alter the fonts on the FullWidth EasySlider with these
.avia-caption-title {
font-size: 15px;
}
.avia-caption-content {
}You can use this for the menu.
#top .main_menu .menu li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-size: 12px;
font-weight: 600;
font-size: 13px;
font-family: Helvetica;
}Regards,
Ismael
Hi,
What type of header are you using?
1.) You can remove the magnifying glass via css, please add this on your custom.css or Quick CSS
#menu-item-search {
display: none;
}2.) You can apply the menu font styling on this selector
.main_menu ul:first-child > li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-size: 12px;
font-weight: 600;
font-size: 20px;
}3.) What do you mean by “remove the current page from the menu”?
Regards,
Ismael
Hi,
You can target a specific iconbox. You can do that by adding the avia-builder selector.
#top .iconbox.avia-builder-el-5 {
background: rgba(110, 128, 128, 0.49) !important;
}Please try to inspect each of your iconboxes and look for the avia-builder selector. I think it is the only way you can specify a different color for each iconbox.
Regards,
Ismael
Hi,
1.) Oh, my bad. I also tested it and it is really not working. Let me tag the rest of the support team.
2.) Replace the code with this. Please remove browser cache then reload the page.
.image-overlay .image-overlay-inside::before {
background-color: green !important;
}Regards,
Ismael
Hi,
Yes, please clear the displayed everywhere widget area. The widget settings are somehow getting stuck. Try to temporarily switch to a different theme then remove everything on the widget area. Switch back to Enfold theme.
Regards,
Ismael
May 15, 2013 at 12:41 am in reply to: Just Purchased ThemeForest Need Shop Read Forum But . . . #119212Hi,
Please download the latest version of Enfold on your ThemeForest account. :)
Regards,
Ismael
Hi,
It is working fine on my end. Save the button settings then update the page too. If it doesn’t work, you can apply the button color to your custom.css or Quick CSS
body div .avia-button {
background-color: red !important;
}Regards,
Ismael
Hi,
Go to LayerSliderWP > Select a slider > Global Settings > Basic > Layers Container, specify the width in pixels. This will constrain the elements at the center on a specific width. You may need to adjust the element position after.
Regards,
Ismael
May 14, 2013 at 5:27 am in reply to: increase size logo but compatible with small fixed header? #118557Hi,
Go to Theme Options > Header > Select “Header with Social Icons and bottom Navigation”.
Or add this on your custom.css to move the menu below.
#menu-main-menu {
margin-top: 45px;
}
.main_menu .menu ul {
top: 70%;
}
.avia-menu-fx {
top: 70px;
}Regards,
Ismael
Hi,
No, you can pick any pattern or background you want on the admin panel. The code above fixes the header when you scroll down the page. It will display a white header with no image background or pattern. I’m still not sure why it is not rendering the background image when scrolled but at least you don’t have a transparent header when you scroll down.
Regards,
Ismael
Hi,
Yes, that is true. EasySlider doesn’t have the Stretch image option. Use the Fullwidth EasySlider.
Regards,
Ismael
Hey,
@melonmelon: That is a huge help. I didn’t know there is a plugin like that. Do the images and configurations get exported after it’s done? :)
Regards,
Ismael
Hi,
Add this on your custom.css
#easy_search_formular input {
width: 100px !important;
display: inline;
}
#easy_search_formular select {
width: 220px;
display: inline;
}Regards,
Ismael
Hi,
Add this on your custom.css or Quick CSS
.blog-categories.minor-meta, .blog-author.minor-meta {
display: none;
}To remove the separator, open includes > loop-index.php and find this code
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';Replace that with
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;Again, find this code
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
echo "<span class='text-sep'>/</span>";Replace it with this
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";Regards,
Ismael
May 14, 2013 at 1:11 am in reply to: Problem: Video on Portfolio page is shown behind content and not below #118946Hi,
1.) Can you give us a link to the page?
2.) Instead of video, insert the Image element. Edit it then set the Image Link? to Set Manually, insert the video URL.
Regards,
Ismael
May 14, 2013 at 1:07 am in reply to: Removing the featured image from top of a single blog post. #118943Hi,
To remove the featured image, just add this on your custom.css
.big-preview.multi-big {
display: none;
}Open includes > loop-index.php then find this code
if(has_tag() && is_single())
{
echo '<span class="blog-tags minor-meta">';
echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
echo '</span></span>';
}Replace that with
if(has_tag() && is_single())
{
echo '<span class="blog-tags minor-meta">';
echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
echo '</span></span>';
}
edit_post_link();It will create a neat Edit this link at the bottom.
Regards,
Ismael
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
Hi,
Refer to this link https://kriesi.at/support/topic/need-to-use-all-weights-of-the-open-sans-font-eg-bold800.
Regards,
Ismael
Hi,
This seems to be working. Please add this on your custom.css
.cases .entry-content.clearfix.standard-content {
padding-left: 131px;
}Regards,
Ismael
-
AuthorPosts