Forum Replies Created
-
AuthorPosts
-
Hi,
You can use this
#header_meta {
background: black;
}
.header_color .sub_menu>ul>li>a, .social_header .phone-info.with_nav span, .header_color .social_bookmarks a {
color: white;
}Regards,
Ismael
Hi,
It loads fine on desktops, fyi.
These are the things that you can do:
1.) Use this plugin to compressed your css and js files: http://wordpress.org/plugins/bwp-minify/
2.) Use a caching plugin like: http://wordpress.org/plugins/w3-total-cache/, http://wordpress.org/plugins/wp-super-cache/
3.) Optimize your image sizes. There are lots of tutorial on how to do it. Search google “optimize image sizes tutorial”.
4.) Try to use a CDN for static content
5.) Upgrade your hosting service.
Let me tag Devin to check this out.
Regards,
Ismael
Hi,
@formateins: Thanks for the tip.
You can do the following:
1.) Use this plugin to compressed your css and js files: http://wordpress.org/plugins/bwp-minify/
2.) Use a caching plugin like: http://wordpress.org/plugins/w3-total-cache/, http://wordpress.org/plugins/wp-super-cache/
3.) Optimize your image sizes. There are lots of tutorial on how to do it. Search google “optimize image sizes tutorial”.
4.) Upgrade your hosting service.
Regards,
Ismael
Hi,
Can you give us a link to your website? Please add this on your custom.css
code {
line-height: 1em;
}
pre {
padding: 10px;
line-height: 1em;
background: #e1e1e1;
}Regards,
Ismael
Hi,
@formateins: Thanks man. :)
@GLIMedia: You can do formateins solution. Add the code on your custom.css or Quick CSS.
#menu-item-search {
display: none;
}Regards,
Ismael
Hi,
You can use the Advance Layout Editor for Portfolio Items. Under the Media Elements tab, insert the Gallery element.
Regards,
Ismael
Hi,
The only workaround is to edit the wp_layerslider on your database via phpmyadmin. Edit the slides then look for the old image url path then change it to the new path. It image path inside the wp_layerslider table looks something like this:

Regards,
Ismael
Hi,
It is not possible right now but Kriesi will make it easier to add custom icons in the future. You can only use the icons available on entypo fontello font. http://www.entypo.com/
This is a quick tutorial on how to modify the icons: https://kriesi.at/support/topic/youtube-icon/#post-117381
You can add a feature request here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
Hi,
Those are the child of the parent page “My Account”. Edit each of those page, look for page attributes, then deselect the Parent page.
Regards,
Ismael
Hi,
Adding an icon is bit complicated right now. Kriesi will make it easier to add social media icons on the next updates.
I posted a basic instruction on this link but please look for Nick’s comprehensive instruction on how to add or modify social icons. Unfortunately, Entypo Fontello( the font use for rendering icons ) doesn’t have the Apple icon. You might end up following my suggestion.
https://kriesi.at/support/topic/youtube-icon
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS
.sub_menu {
top: 50px;
}Regards,
Ismael
June 30, 2013 at 7:16 am in reply to: How to disable auto inputting of a divider for Colored Sections. #127280Hi,
You mean the border lines?
You can use this on your custom.css or Quick CSS. If I’m correct these are the dividers.
Bottom Shadow:
.avia-shadow {
box-shadow: none;
}Top Border
.container_wrap {
border: none;
}Regards,
Ismael
Hi,
What theme do you have right now?
You can customize the heading on custom.css or Quick CSS.
h1, h2, h3, h4, h5, h6 {
color: red;
}Regards,
Ismael
Hi,
The site you show us doesn’t have a full width background. They separate the background like this
<div id="holder">
<!-- start background layout -->
<div id="background_left"></div><div id="background_right"></div>
<div id="background_pattern"> <!-- fuzz -->
<div id="background_leaves">
<!-- end background divs -->The CSS looks like this
#background_right {
background-image: url(https://sunny-kids-wordpress-theme.dtbaker.net/wp-content/themes/sunny-kids/images/background_leaves_right.png);
position: absolute;
top: 0;
bottom: 0;
width: 122px;
right: 0;
background-position: top right;
background-repeat: no-repeat;
}You can do the same on header.php
Regards,
Ismael
Hello,
Please download Enfold 1.7 then override your old theme files via FTP or cpanel. :)
Regards,
Ismael
Hi,
Please refer to this link. This is the only solution provided by Kriesi.
https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
Regards,
Ismael
Hi,
According to the link Dude gave.
That error is not about the performance of the regex, it's about the regex itself. Changing the pcre.backtrack_limit and pcre.recursion_limit isn't going to have any effect because the regex never gets a chance to run. The problem is that the regex is too big, and the solution is to make the regex smaller--much, much smaller.Regards,
Ismael
Hi,
I’m sorry but I’m a bit confused. Please give us a link to the website and a screenshot pointing to the “anchor points”.
Regards,
Ismael
Hi,
What type of Blog Style do you have? You can add this on your custom.css or Quick CSS.
.page .big-preview.multi-big, .page .small-preview {
display: none;
}Regards,
Ismael
Hi,
Please try this code, make sure that you specify the exact width and height of your logo
#header_main .logo img {
width: 200px;
height: 200px;
width: 200px9;
height: 200px9;
}Don’t remove the 9 after the value.
Regards,
Ismael
Hi,
You can find the thumbnail sizes code on functions.php.
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)The small differences is due to the fact that the images is being constrained by their containers.
Regards,
Ismael
Hi,
You can use the text widget. You can manually add the html code for a set of images. The example below used this code
<ul id="envato-marketplace-items"></p>
<li><a href="http://themeforest.net/item/abundance-ecommerce-business-theme/759562?ref=Kriesi" title="Abundance eCommerce Business Theme"><img src="http://2.s3.envato.com/files/8663400/tooltip_template.jpg" alt="Abundance eCommerce Business Theme" /></a></li>
<li><a href="http://themeforest.net/item/angular-responsive-portfolio/1415600?ref=Kriesi" title="Angular - Responsive Portfolio"><img src="http://2.s3.envato.com/files/16382998/tooltip_template.jpg" alt="Angular - Responsive Portfolio" /></a></li>
<li><a href="http://themeforest.net/item/propulsion-responsive-business-ecommerce/1126092?ref=Kriesi" title="Propulsion - responsive business & eCommerce"><img src="http://3.s3.envato.com/files/13120344/tooltip_template.jpg" alt="Propulsion - responsive business & eCommerce" /></a></li>
<li><a href="http://themeforest.net/item/flashlight-fullscreen-background-portfolio-theme/616050?ref=Kriesi" title="Flashlight - fullscreen background portfolio theme"><img src="http://3.s3.envato.com/files/7056179/tooltip_template.jpg" alt="Flashlight - fullscreen background portfolio theme" /></a></li>
<li><a href="http://themeforest.net/item/corona-business-portfolio-theme/533913?ref=Kriesi" title="Corona - Business & Portfolio Theme"><img src="http://3.s3.envato.com/files/6192197/thumbnail.jpg" alt="Corona - Business & Portfolio Theme" /></a></li>
<li><a href="http://themeforest.net/item/shoutbox-magazine/400938?ref=Kriesi" title="Shoutbox Magazine"><img src="http://0.s3.envato.com/files/4465731/tooltip_template.jpg" alt="Shoutbox Magazine" /></a></li>
<li><a href="http://themeforest.net/item/expose-gallery-template-3-in-1/103010?ref=Kriesi" title="Expose Gallery Template - 3 in 1"><img src="http://2.s3.envato.com/files/330025.jpg" alt="Expose Gallery Template - 3 in 1" /></a></li>
<li><a href="http://themeforest.net/item/cubit-6-in-1-business-portfolio-theme/38712?ref=Kriesi" title="Cubit 6 in 1- Business & Portfolio Theme"><img src="http://1.s3.envato.com/files/108790.jpg" alt="Cubit 6 in 1- Business & Portfolio Theme" /></a></li>
<li><a href="http://themeforest.net/item/newscast-4-in-1-wordpress-magazine-and-blog/91058?ref=Kriesi" title="Newscast 4 in 1 - WordPress Magazine and Blog"><img src="http://0.s3.envato.com/files/288092.jpg" alt="Newscast 4 in 1 - WordPress Magazine and Blog" /></a></li>
<p> <br class="clear"><br />Regards,
Ismael
-
AuthorPosts
