Forum Replies Created
-
AuthorPosts
-
May 15, 2013 at 12:41 am in reply to: Just Purchased ThemeForest Need Shop Read Forum But . . . #119212
Hi,
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
Hi,
Older version of Enfold doesn’t include the config-woocommerce folder. You need to have Enfold 1.4. :)
Regards,
Ismael
Hi,
Click the Advance Layout Editor button. That is the blue button at the top of the Add Media. If you are experiencing any trouble, we suggest to download the theme again.
Regards,
Ismael
Hi,
It is not missing. Please check again. Download the latest version on your themeforest account.
Regards,
Ismael
Hi,
After installing and activating the Enfold theme, just Import the Dummy Data.
Regards,
Ismael
Hi,
Add this on your custom.css
.header_color .header_bg {
background: white url(https://localhost/kriesi/enfold/wp-content/themes/enfold/images/background-images/dashed-cross-dark.png) top center repeat fixed;
}Change the image url. This will render a white header when you scroll down.
Regards,
Ismael
May 13, 2013 at 6:53 am in reply to: increase size logo but compatible with small fixed header? #118554Hi,
What code did you use to increase the size of the log?
This is what I did, I uploaded a fairly large logo 300x200px then I add this on my custom.css
.logo a {
height: 200px;
}
.logo {
width: 300px;
height: 200px;
}
.fixed_header #header {
position: fixed;
height: 200px;
}
#header_main {
border: none;
}Adjust the width height depending on your logo. I’m not sure if you will like how it looks when you scroll down.
Regards,
Ismael
Hi,
You should probably insert the Easy Slider inside a column. Insert 1/4 column then insert the Easy Slider inside.
Regards,
Ismael
Hi,
1.) What do you mean by “info bubble content box”?
2.) Add this on your custom.css
.image-overlay .image-overlay-inside::before {
background-color: green;
}Regards,
Ismael
May 13, 2013 at 6:27 am in reply to: How do I get the header logo to overlap into the slider area? #118586 -
AuthorPosts