Forum Replies Created
-
AuthorPosts
-
Hey,
You can add a unique selector to the h1 tag. Something like this:
<h1 class="awesome" style="text-align: center;">MY TEXT HERE</h1>
You can then style it on your custom.css or Quick CSS:
h1.awesome {
font-size: 20px !important;
color: #ffffff !important;
}Regards,
Ismael
Hi,
Please use the http://wordpress.org/plugins/addthis/. It doesn’t break the layout of the theme.
Refer to this link on how to add the buttons: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606
Use the Text widget to add the addthis social button code on the Footer – Column widget area.
Regards,
Ismael
Hey,
@jimbolgs: You can actually insert shortcode on your footer widgets. Use the Text widget then place it on the Footer – Columns widget area. Try the button element. :)
Cheers,
Ismael
Hey,
Glad you fixed it. :)
You can place the code on the child theme’s style.css:
.image-overlay.overlay-type-extern {
display: none !important;
}Cheers,
Ismael
August 25, 2013 at 2:17 am in reply to: Avia Layout Builder – Insert into Page button not working #137188Hi,
I can’t seem to reproduce the issue on my end. I have WordPress 3.6 and Enfold 2.0.1 and the button is working ok. Have you tried switching to the Advance Layout Editor? You can use the “Image” element to insert images. Let me tag the rest of the support team.
Also, please try to create a test site then activate Enfold. Check if the “Insert into page” button is working there.
Regards,
Ismael
Hey,
First, can you give us a link to website?
1.) You don’t have to use WP Google Fonts for Open Sans. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:700';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:700';
return $fonts;
}This will enable the Open Sans Bold 700. Go to Enfold > Styling > select a Heading Font and Define the Font for your body text.
Again, use the code for the LayerSlider layers with the css selector “.layerslider-open-sans”:
.layerslider-open-sans {
font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
font-weight: 700;
}3.) You can access custom.css via FTP or your cpanel. It is located on wp-content/themes/enfold/css folder.
Regards,
Ismael
Hey,
How many columns are you using for your portfolio items? Can you give us a link to the page?
Regards,
Ismael
Hey,
I don’t think it has something to do with the sidebar settings. I can’t fix the issue because I can’t reproduce it on my end. Let me tag the Kriesi and the rest of the support team.
Regards,
Ismael
Hey,
What do you mean by “window reached logo+menu part”?
The code above should render the header fixed when viewing on mobile device.
Regards,
Ismael
August 25, 2013 at 1:34 am in reply to: change the look of the "Register" link in bbpress Login Widget #137148Hey,
This will make it look exactly like the login button. Just change the color value:
.bbp-register-link {
border-radius: 2px;
background-color: #c3512f;
color: #ffffff !important;
border-color: #c3512f;
cursor: pointer;
display: block;
height: 34px;
width: 68px;
font-size: 13px !important;
padding: 10px 10px 10px 10px !important;
margin-top: 2px;
-ms-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
text-decoration: none !important;
}
.bbp-register-link:hover {
background-color: #88bbc8;
color: #ffffff;
border-color: #88bbc8;
}Regards,
Ismael
August 25, 2013 at 1:25 am in reply to: Enfold & WP update related AJAX portfolio preview issue #137381Hey,
Remove the code for number, use this:
.header_color .main_menu ul:first-child > li > a {
color: white;
}Regards,
Ismael
Hey,
You can use this instead:
.slide-meta-time, .slide-meta-del {
display: none !important;
}Cheers,
Ismael
Hey,
This will get you started. Edit header.php, find this code:
<!-- end container-->
</div>Above, place this code:
<div id="right-header">
<a class="login"href="LINK HERE">Login</a>
<a class="get-started"><img src="BUTTON IMAGE URL HERE"></a>
</div>After that, add this on your custom.css or Quick CSS:
#right-header {
position: absolute;
right: 0;
}
#right-header a {
display: inline-block;
width: 50px;
height: 100%;
}
#right-header a.login {
border-right: 1px solid gray;
}Regards,
Ismael
Hey,
Glad we could help. :)
You can request it here: https://kriesi.at/support/topic/enfold-feature-requests
Cheers,
Ismael
August 24, 2013 at 7:36 am in reply to: Title breadcrumb in the header is not truncated correctly with Unicode #136387Hi,
Searching for a fix, I found this solution. If your PHP settings have ‘Multibyte String : mbstring.encoding_translation’ turned on, some special characters will not display, and cut any content following them. Can you please ask your host to disable this setting?
Regards,
Ismael
Hey,
You can remove the word archive on framework > php > function-set-avia-frontend.php, find this code:
if(!function_exists('avia_which_archive'))
{
/**
* checks which archive we are viewing and returns the archive string
*/
function avia_which_archive()
{
$output = "";
if ( is_category() )
{
$output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
}
elseif (is_day())
{
$output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
}
elseif (is_month())
{
$output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
}
elseif (is_year())
{
$output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
}
elseif (is_search())
{Regards,
Ismael
Hey,
Just add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) {
.responsive #top #header {
position: fixed;
}
}Remove browser cache then reload the page.
Cheers,
Ismael
Hey,
You can find it on functions-enfold.php:
'title' => get_the_title($id),
'subtitle' => "", //avia_post_meta($id, 'subtitle'),
'link' => get_permalink($id),
'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
'breadcrumb' => true,
'additions' => "",
'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/Regards,
Ismael
August 24, 2013 at 7:13 am in reply to: Avia Layout Builder – Insert into Page button not working #137185Hi,
What “Insert into page button”? Can you give us a screenshot? Have you tried disabling all your plugins?
Regards,
Ismael
Hi,
You can add video beside the main featured image. Edit the portfolio item, scroll below then look for “Add Preview Text”, switch to Text mode. Add something like this:
<a href="http://youtu.be/kYtGl1dX5qI" rel="lightbox"><img alt="" src="IMAGE URL HERE" /></a>
Don’t forget to add rel=”lightbox” to the anchor tag. This will open the video on a lightbox.
Anyway, you can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
Hey,
Edit framework > php > class-breadcrumb.php , find this code:
'show_home' => __( 'Home', 'avia_framework' ),
Replace it with:
'show_home' => __( 'Atelier', 'avia_framework' ),
Regards,
Ismael
-
AuthorPosts