Forum Replies Created
-
AuthorPosts
-
Hi,
Please add this on your custom.css or Quick CSS
.embed-youtube {
text-align: left !important;
}Regards,
Ismael
June 24, 2013 at 2:38 am in reply to: problems removing reagured image from post and portfolio item #126134Hi,
What type of Blog style do you have? The code you have should work fine. You can also add this if you are using the small preview pic blog style.
.small-preview {
display: none;
}Regards,
Ismael
Hi,
You can isolate the homepage using its unique body class selector. Inspect the homepage using Chrome, right click, inspect element. Look for the body class. It will look something like this page-id-734.
You can use it before any selectors that you want to change. Something like this
.page-id-734 .av_one_third {
/* STYLE HERE */
}Regards,
Ismael
Hi,
Can you give us a link to your website? What mobile device do you have and what is the display resolution of this mobile device?
Regards,
Ismael
Hi,
If the color of the progress bar is blue, go to shortcodes.css, find this code
.blue-bar .bar{
background: #7bb0e7;
background-image: -webkit-linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
background-image: -moz-linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
background-image: -o-linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
background-image: -ms-linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
background-image: linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
}Replace it with this code to remove the slanted lines effect or the strobe effect.
.blue-bar .bar{
background: #7bb0e7;
}This will create a solid colored progress bar. You can change the width and height using this code
.avia-progress-bar .progress {
width: 50%;
height: 20px;
}Regards,
Ismael
Hi,
Please follow the thread.
https://kriesi.at/support/topic/how-to-add-advanced-layout-manager-to-blog-posts
I end on up on a 404 page visiting this link: http://www.wohnluft.de/2013/06/5-lesenswerte-architekturseiten/
Regards,
Ismael
June 24, 2013 at 2:20 am in reply to: How to change the word "All" for the Portfolio Category Filter ? #125912Hi,
Please edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes portfolio.php, find this code
$output .= "<a href='#' data-filter='all_sort' class='all_sort_button active_sort'>".__('All','avia_framework' )."</a>";
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS
.search .breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.template-page .entry-content h2, .template-page .entry-content h3 {
z-index: -1;
}Did you change anything on the CSS files?
Regards,
Ismael
Hi,
Open js > avia.js, find this code
if(st < el_height/2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
//header.addClass('shadow');
}Replace it with
if(st < el_height/1.2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/1.2;
//header.addClass('shadow');
}This will still shrink the logo but not so much. :)
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS.
.alternate_color {
background-color: blue;
}You can also change the color settings on Enfold > Theme Options > Styling Tabs. Scroll below.
Regards,
Ismael
Hi,
I’m not sure where did Dude get the code, I can’t find it myself. Please give this one a roll.
#scroll-top-link {
font-family: 'entypo-fontello' !important;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
You can change it on the Promo Box options, look for Button Color. You can also Aadd this on your custom.css or Quick CSS.
.av_promobox .avia-button {
background-color: red;
border-color: pink;
color: white;
}Change the property values.
Regards,
Ismael
Hi,
Can you give us a link to your website? The theme is compatible with Firefox and IE8 above.
Are you running on a MAC OS?
Regards,
Ismael
June 23, 2013 at 5:22 pm in reply to: RoyalSlider – Compatible? Idea of a Touch Slider that would play well w/ Enfold? #124634Hi,
I’m sorry but I can’t fix the issue. Please contact the creator of the plugin. Maybe they can shed some light on the problem.
Regards,
Ismael
Hi,
Please give us a link to the category page. Maybe we can hide the image via CSS.
Regards,
Ismael
Hi,
Yes, that is correct.
You change the border color of the header. Add this on your custom.css or Quick CSS
.header_color div {
border-color: red;
}For the breadcrumb text, use this
.breadcrumb-trail span {
color: blue;
}
.breadcrumb-trail span a {
color: blue !important;
}Regards,
Ismael
Hi,
You can override the blank page background color with this.
.page-template-template-blank-php #wrap_all {
background: black;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
You should probably follow this link. See mine and formateins’ solution.
https://kriesi.at/support/topic/some-problems-404-permalink-and-wpml
Regards,
Ismael
June 21, 2013 at 6:34 am in reply to: How do I remove top header bar, and reduce the amount of white space? #125887Hi,
1. Remove the top bar above the header
Add this on your custom.css or Quick CSS
#header_meta {
display: none;
}2. Reduce the whitespace found across all pages between the menu and text
I’m not sure what whitespace you’re referring to since the link you gave almost have no content in it.
.template-page.content.twelve.alpha.units {
padding-top: 10px;
}3. Reduce the white space above and below the horizontal ruler.
You can use this
.hr {
height: 10px;
margin: 10px;
}Adjust the values.
Regards,
Ismael
Hi,
Edit config-templatebuilderavia-shortcodes portfolio.php, find this code
$output .= "<a href='#' data-filter='all_sort' class='all_sort_button active_sort'>".__('All','avia_framework' )."</a>";
foreach($categories as $category)
{
if(in_array($category->term_id, $current_page_cats, true))
{
$output .= "<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";
$output .= "<a href='#' data-filter='".$category->category_nicename."_sort' class='".$category->category_nicename."_sort_button' >".$category->cat_name."</a>";
}
}Replace it with:
//$output .= "<a href='#' data-filter='all_sort' class='all_sort_button active_sort'>".__('All','avia_framework' )."</a>";
foreach($categories as $category)
{
if(in_array($category->term_id, $current_page_cats, true))
{
$output .= "<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";
$output .= "<a href='#' data-filter='".$category->category_nicename."_sort' class='".$category->category_nicename."_sort_button' >".$category->cat_name."</a>";
}
}Regards,
Ismael
Hi,
Sorry my bad. Edit config-templatebuilderavia-shortcodesiconlist.php, find this code on line 208 perhaps
$atts['title'] = "<a href='{$atts['link']}' title='".esc_attr($atts['title'])."'>{$atts['title']}</a>
Replace it with:
$atts['title'] = "<a target='_blank' href='{$atts['link']}' title='".esc_attr($atts['title'])."'>{$atts['title']}</a>
Regards,
Ismael
June 21, 2013 at 6:03 am in reply to: RoyalSlider – Compatible? Idea of a Touch Slider that would play well w/ Enfold? #124632 -
AuthorPosts