Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.This reply has been marked as private.
Hi Elliott,
Sorry for not beeing ver clear, but it was set to 100%.
Here is how it looks though:
http://gyazo.com/0668553cf3d6652fa67a696c48888b44And now there is even bigger problem. When screen is resized there is a huge blank box:
http://gyazo.com/73c13307b8741151f9392b193c7e37ceoh and it also wrecked the padding of the first color section
I had to add !important to make changes reflect
.html_header_top.html_header_sticky.html_bottom_nav_header #main {
padding-top: 90px !important;
}however, there is a proble. I want to hide menu on a specific page and leave it on main landing page
menu – http://nasledstvo.biz.ua
no menu – http://nasledstvo.biz.ua/test/it did a job on a nomenu page, but you can see the grayish line that cover nav menu and half of the logo container on main page
This reply has been marked as private.Unfortunately it doesn’t track submits
//ya.metrika for submit button
add_filter(‘avf_contact_form_submit_button_attr’,’avia_add_submit_attributes_to_cf’, 10, 3);
function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
$att = “onclick=\”yaCounter25238750.reachGoal(‘realty’);\””;
return $att;
}I’ve triple checked counter # and goal id and its correct, but for some reason it doesn’t work
Yeah that would work, but how exactly my code will look like
add_filter(‘avf_contact_form_submit_button_attr’,’avia_add_submit_attributes_to_cf’, 10, 3);
function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
$att = “onclick=\”yaCounter25372100.reachGoal(‘banktop’);\””;
return $att;
}looks good?
Thanks
Thank you Elliott!
Could you please provide the default values for avia-section-large
The firebug shows 2% instead of px, however, when I try % in child’s style css, like
.avia-section-large .content, .avia-section-large .sidebar {
padding-bottom: 1%;
padding-top: 1%;
}it doesn’t work at all
August 13, 2014 at 11:06 am in reply to: WordPress MU subdomain issue (import and setting don't work) #303713Hi,
I am touching wood here, but it seems like most of the problems are gone. My hosting uses apache + nginx so there are some configurations to be made in order for multisite to work. I did them yesterday and apparently it took more time then I though for things to change.
So this morning IMPORTING works just fine. PAGE BUILDER is also working without any issues.
Only RESETING FONTS issue remains, but I narrowed it down.
I also changed font to Alice and it sticked.It only resets when I choose manually added font – OPEN SANS C
Here is the code I use in child’s theme function.php
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Open Sans C'] = 'Open Sans:400,600&subset=cyrillic'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Open Sans C'] = 'Open Sans:400,600&subset=cyrillic'; return $fonts; }
The site I am talking about is http://sud.nasledstvo.biz.ua/ and it has only 1 page.
Hi!
I used the code and it fixed the static view, but as soon as I start scrolling this happens
-
AuthorPosts