Forum Replies Created
-
AuthorPosts
-
Hey,
Can you give us a link to the website? Did you add any plugins prior to the issue?
Regards,
Ismael
Hey,
Follow this steps to create a Portfolio Page.
1.) Create portfolio items on Portfolio Items panel.
2.) Create a new page on the Page panel then go to Advance Layout Editor.
3.) Click Content Elements tab then insert the Portfolio Grid. Configure the options like Column count and the categories to show. Publish the page.
Please watch this video: https://vimeo.com/channels/aviathemes/64927359
Regards,
Ismael
September 7, 2013 at 5:57 am in reply to: CSS help with changing the header menu backgroudn to Transparent? #139207Hey,
The code above should work even when you scroll down the page. Please try this:
.fixed_header #main {
padding-top: 0;
}
.header_color .header_bg, #header_main {
background-color: transparent !important;
border: none;
}
.header_color div {
border: none;
}Cheers,
Ismael
Hey,
They’re both not showing bullet points because your html markup is incorrect. They are not really on the same unordered list. You have this code:
<ul>
<li><b>Insulated Power Cables (600V to 230 kV)</b>– Specially engineered and CSA certified, unarmoured easy bending and handling Ethylene Propylene Rubber insulated Power Cables requiring specific dimensions and fire ratings.</li>
</ul>
<ul>
<li><b>Cable Clamping</b> – Specially dimensioned and pre-formed one piece multiple loop clamps c/w hardware for automatically establishing rotating balanced flux trefoil phase cable impedance relationships and providing easy installation without the need for any tools to secure clamps in place.</li>
</ul>It should be like this:
<ul>
<li><b>Insulated Power Cables (600V to 230 kV)</b>– Specially engineered and CSA certified, unarmoured easy bending and handling Ethylene Propylene Rubber insulated Power Cables requiring specific dimensions and fire ratings.</li>
<li><b>Cable Clamping</b> – Specially dimensioned and pre-formed one piece multiple loop clamps c/w hardware for automatically establishing rotating balanced flux trefoil phase cable impedance relationships and providing easy installation without the need for any tools to secure clamps in place.</li>
</ul>Hey,
My bad. I edited the code above. Please remove browser cache then reload the page.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
.header_color .main_menu ul:first-child > li > a {
color: gray;
}Regards,
Ismael
Hey,
Can you post a link to the page with the actual issue? Also, a screenshot will help. I don’t see the Plastic, Steel, Fabric text anywhere.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS:
.big-preview {
display: block;
padding: 0;
}Regards,
Ismael
Hey,
@erantdo: Please try this. 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['Alef'] = 'Alef';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Alef'] = 'Alef';
return $fonts;
}Regards,
Ismael
Hey,
Edit framework > php > class-framework-widgets.php, find this code on line 1278:
var myOptions = {
zoom:".$zoom.",
mapTypeControl:true,
mapTypeId:google.maps.MapTypeId.".$type.",
mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl:true,
navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
center:latlng
};Replace it with:
var myOptions = {
zoom:".$zoom.",
mapTypeControl:true,
mapTypeId:google.maps.MapTypeId.".$type.",
mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl:true,
navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
center:latlng,
panControl:true
};I don’t think it is that easy to hide it or show it only on mobile view.
Regards,
Ismael
Hey,
Please remove browser cache then reload the page a few times. If you have a cache plugin, please flush the settings. What type of font are your trying to use?
Regards,
Ismael
Hi,
I tried this on my end using a child theme and the sidebar shows properly. When editing a page with the idx template, did you properly select the Sidebar on Layout options on the lower right of the editor?
Note: The Advance Layout Editor will not work when using this IDX template. Please switch to Default Editor.
Regards,
Ismael
September 7, 2013 at 4:25 am in reply to: Poor quality thumbnail images in portfolio gallery #139977Hi,
Please edit that line on functions.php, replace it with:
$avia_config['imgSize']['portfolio_small'] = array('width'=>514, 'height'=>370 ); // images for portfolio 4 columns
It will double the size of the cropped portfolio thumbnail. Regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
Ismael
September 7, 2013 at 4:08 am in reply to: CSS help with changing the header menu backgroudn to Transparent? #139205Hey,
This will make the header transparent:
.header_color .header_bg, #header_main {
background: transparent;
}To have the full effect, move the main container upwards:
.fixed_header #main {
padding-top: 0;
}Cool website, by the way. :)
Regards,
Ismael
Hey,
@Iano999: You did send me the login details but I think it is wrong. Please send it again.
Regards,
Ismael
Hey,
Yes, <!–nextpage–> should work. Please add the code on Text mode of the editor.
Regards,
Ismael
Hi,
Edit functions.php, find this code:
$avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven');
$avia_config['layout']['sidebar_left'] = array('content' => 'nine', 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
$avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha', 'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');Replace it with:
$avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven');
$avia_config['layout']['sidebar_left'] = array('content' => 'ten', 'sidebar' => 'two alpha' ,'meta' => 'two alpha', 'entry' => 'ten');
$avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha', 'sidebar' => 'two alpha', 'meta' => 'two alpha', 'entry' => 'ten alpha');Regards,
Ismael
Hi,
Maybe you need to create it from scratch. Delete the page then start again. Can you give us a link to the sample vimeo video?
Regards,
Ismael
Hey,
The best way is to create a child theme but since you don’t have one, you need to create a backup of the modified files. Update the theme then add the changes again.
Regards,
Ismael
Hey,
Did you set a Featured Image for each Portfolio Items?
Please send the login details to //…
Include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHey,
You can add this on your custom.css or Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 12px;
}
.logo.bg-logo {
width: 200px;
margin-top: 20px;
}
}You can adjust the size of the logo.
Regards,
Ismael
Hey,
You can use this on your custom.css or Quick CSS:
IconBox:
.main_color .iconbox_content_title {
color: red;
}
.main_color .iconbox_icon.heading-color.avia-font-entypo-fontello {
color: blue;
}Regards,
Ismael
Hey,
You can use this:
.nonfixed_header .header_bg, #header_meta, #header {
-webkit-border-top-right-radius: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-topleft: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}Regards,
Ismael
Hi,
Use this plugin to display products on your website: http://wordpress.org/plugins/woocommerce/
Regards,
Ismael
Hi,
I’m not sure which is which but please try to regenerate the thumbnails on the language with the Gallery not working.
http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
Ismael
September 6, 2013 at 3:04 am in reply to: How to make Google Maps open with custom location in new window #139663Hi,
What do you mean by “Custom Location”?
No, I don’t think that is possible if you’re using the Enfold Google Maps Widget.
Regards,
Ismael
-
AuthorPosts