Forum Replies Created
-
AuthorPosts
-
Can you change it back to 100px and link me one inner page where the issue occurs.
Best regards,
JosueHere you go:
/* Padding adjustments */ #header_main .menu > li > a{ padding: 0 5px; } #header_main .menu > li > a .avia-menu-text { padding: 8px 10px; transition: all linear 0.3s; border-radius: 5px; } /* Indicator removal */ .avia-menu-fx{ display: none; } /* Submenu positioning */ #top .av-main-nav ul { border: 0; top: 75%; left: 5px; border-radius: 0 5px 5px; overflow: hidden; } /* Coloring */ #header_main .menu > li:hover > a .avia-menu-text { background: #d1d1d1; color: red; } #top .av-main-nav ul a{ padding: 8px 10px; color: red; border: 0; background: #d1d1d1; }Not sure how would you add an arrow there as the top menu item is part of the ‘bubble’ too.
Ok, try with:
.ssba.ssba-wrap { padding: 100px 0 0 0; }paddingaccepts 4 values in this order:top right bottom left, so in the code above we only increasetop.It’s working – http://imgur.com/XwIC43m
Try increasing the value, 20px to something higher like 60px.
Change it to:
.ssba.ssba-wrap { padding: 20px 0; }Hey!
Make sure the code has been added, i’m not noting it neither in Quick CSS or child theme style.css.
Best regards,
JosueHi!
This code in your Quick CSS:
.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 199px !important; }Change it to:
@media only screen and (min-width: 767px) { .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 199px !important; } }Cheers!
JosueOk, use the following:
/* Padding adjustments */ #header_main .menu > li > a{ padding: 0 5px; } #header_main .menu > li > a .avia-menu-text { padding: 8px 10px; } /* Indicator removal */ .avia-menu-fx{ display: none; } /* Submenu positioning */ #top .av-main-nav ul { border: 0; top: 75%; left: 5px; } /* Coloring */ #header_main .menu > li:hover > a .avia-menu-text { background: #d1d1d1; color: red; } #top .av-main-nav ul a{ padding: 8px 10px; color: red; border: 0; background: #d1d1d1; }Adjust as needed.
Best regards,
JosueHi!
The access you provided doesn’t seem to work, please check.
Best regards,
JosueHi,
Website is unaccessible, can you hand us an access via private reply?
Regards,
JosueJanuary 27, 2016 at 11:42 pm in reply to: Embed code from Zoho Form messing up Avia Layout Builder #573324Hey!
I’d suggest you using a custom shortcode for this, something like this in your theme / child theme functions.php:
function custom_shortcode_func() { ob_start(); ?> PUT YOUR CODE HERE <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');Then you’d use
[my_shortcode].Cheers!
JosueHi!
Try refreshing your browser a few times, the theme options is looking and working fine as far as i could tell.
Best regards,
JosueHey!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.ssba.ssba-wrap { padding: 20px; }Cheers!
JosueJanuary 27, 2016 at 11:35 pm in reply to: Editor problems after update & transparency not working #573318Hi!
Yes that may be possible with custom CSS, would need to see the finalized site in order to give you the precise code.
Cheers!
JosueHey!
The link you posted is returning “Page Not Found”.
Cheers!
JosueHi!
I’d suggest creating a custom shortcode for this, like (theme / child theme functions.php):
function custom_shortcode_func() { global $post; ob_start(); ?> <a href="mailto: (Email address hidden if logged out) ?subject=<?php echo get_the_title($post->ID); ?>">E-MAIL LINK LINK TEXT</a> <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');And then use
[my_shortcode].Best regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueJanuary 27, 2016 at 10:54 pm in reply to: When using portfolio grid ajax I would like to disable the link of the images. #573300Hi!
Try this one:
.grid-entry a.grid-image { pointer-events: none; }Place it at the very start of Quick CSS.
Regards,
JosueHey!
I’m still unsure what could be the source of the issue but i managed to find a workaround, check the /test/ page.
Regards,
JosueJanuary 27, 2016 at 1:19 pm in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572831You are welcome, glad to help :)
Regards,
JosueJanuary 27, 2016 at 1:14 pm in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572823There are some typos in your stylesheet comments that are preventing the code from working – http://c3computers.nl/wp-content/themes/enfold-child/style.css. CSS comments should be like:
/* comment */Not like this:
*/ Comment */Hi!
Use the following:
#top #header .av-main-nav li.current-menu-item a { background: red; } #top #header .av-main-nav li.current-menu-item a .avia-menu-fx{ background: blue; }The first code will change the background of the link and the second one will change the color of the indicator.
Regards,
JosueJanuary 27, 2016 at 12:01 pm in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572775Try adding this code to the Quick CSS:
.page #custom_share_box { display: none; }Cheers!
JosueIt’s appearing now on the homepage, check it.
Regards,
JosueJanuary 27, 2016 at 11:55 am in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572771Simply change this part:
if($context == "page" || $context == "single-portfolio" || $context == "product")To:
if($context == "single-portfolio" || $context == "product")Best regards,
JosueJanuary 27, 2016 at 11:50 am in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572768You are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
