Forum Replies Created
-
AuthorPosts
-
Hey Thijsalex,
You can import the Demo (Theme Options > Demo Import) you wish to use and start with that.
Best regards,
JosueHey ,
Fixed, added this to child theme functions.php:
function avia_get_header_scroll_offset(){ return 0; }
I happened because the scroll script calculates the top offset using the header size.
Best regards,
JosueHey,
That’s a “warning”, in PHP, these are simple messages indicating something is odd, they don’t stop execution like Fatal Errors. That being said, do you always get this exact message when updating the theme? does it happen with plugins too?
Best regards,
JosueHi,
@zerdsolutions, seems to be a plugin conflict indeed, here’s a JS fix you can try, add this at the very end of your themes / child themes functions.php file:
function add_custom_script(){ ?> (function($){ $(window).load(function() { if(!$('aside.sidebar').parents('.container').length > 0){ $('aside.sidebar').appendTo($('.sidebar_right .container')); } }); })(jQuery); <?php add_action('wp_footer', 'add_custom_script');
@traumreiter, no you can’t combine both themes without custom work, their plugins may work though.Best regards,
JosueMay 16, 2016 at 12:17 pm in reply to: Show Category on full post but not on "Blog Posts" content element #632881Hey Marsha,
Try adding this too:
.single-post span.blog-categories, .single-post .slide-meta { display: none; }
Best regards,
JosueHi,
Your Product page doesn’t look like the screenshots you posted, add this to Quick CSS to remove the duplicated title:
#tab-description > h2 { display: none; }
Best regards,
JosueHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.news-headline { font-family: 'Metrophobic', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif; }
Best regards,
JosueHi,
The link you posted (‘/make-an-appointment’) is returning a 404 error page.
Best regards,
JosueYou’re welcome, glad to help :)
Best regards,
JosueHi,
When editing the Grid Row element there’s an option to change the Mobile behavior:
Cells appear beside each other, just like on large screens
Best regards,
JosueHi,
Can you please provide us a temporary FTP access (via private data field)?
Best regards,
JosueHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.textwidget ins:before { display: none !important; }
Best regards,
JosueHi,
The number does display in the URL when you edit the Page in the backend – http://screencast.com/t/Vsd0XjXX
If it’s not working indicate the Buttons-Pages to be linked and i’ll do it for you.
Best regards,
JosueMay 14, 2016 at 9:37 am in reply to: Custom Google Maps settings and Child Theme – Possible? #632307Hi Roger,
If you want to modify an Enfold Widget simply paste the widget code into functions.php, for example for the Maps:
class avia_google_maps extends WP_Widget { .... }
Best regards,
JosueHi Marcello,
Yes, you can do that, place them one after another in the GA field.
Best regards,
JosueHi,
Thing is, the border is caused by the image spaces, see below:
http://screencast.com/t/Z7FohaOJUK5With background:
http://screencast.com/t/1BssFYXdeCnBest regards,
JosueHey,
Check the site, i added the following to the first slide caption:
<div class='framed'>Supporting the community</div> <div class='buttons'> [av_button label='Children’s Services' link='page,5710' color='light' size='medium' position='left' icon_select='no'] [av_button label='Training' link='page,5710' color='theme-color' size='medium' position='left' icon_select='no'] [av_button label='Extra Button' link='page,5710' color='theme-color' size='medium' position='left' icon_select='no'] [av_button label='Extra Button' link='page,5710' color='theme-color' size='medium' position='left' icon_select='no']</div>
Change the link for the 2 extra buttons (
5710
is Page ID). Also added this to Quick CSS:/* Slider extra buttons */ .slideshow_caption{ width: 55%; } .avia-caption-content .framed { background: #000; filter: alpha(opacity = 80); background: rgba(0, 0, 0, 0.5); display: inline-block; margin: 0 0 1px 0; padding: 10px 15px; } .avia-caption-content .buttons br{ display: none; } .avia-caption-content .buttons a{ text-decoration: none !important; text-transform: uppercase; padding: 15px 16px; } .avia-caption-content .buttons a.avia-color-light { padding: 12px 16px; }
-
This reply was modified 9 years, 2 months ago by
Josue.
You are welcome, glad to help :)
Regards,
JosueMay 12, 2016 at 2:16 pm in reply to: Slowly re-coloring in style.css – should I use Sass or Less? #631386Hi,
Yes, it will work if you use the .css file, but i forgot about another thing, usually Sass -and similar- strip the comments of the file in order to compile it compressed / minified, this would lead to a problem if you use style.css because style.css is a key theme file that uses CSS comments (/* */) to tell WordPress the theme’s metadata (parent theme, theme name, author, etc).
As a suggestion, if you use child themes extensively try to not use style.css as your custom CSS file (because of the aforementioned), instead create a /css/ folder in your child theme and use a custom file (ex: main.css), to enqueue it simply paste this in functions.php:
add_action('wp_enqueue_scripts', function() { wp_enqueue_style( 'main-css', get_stylesheet_directory_uri().'/css/main.css', array(), '', 'all' ); }, 100);
Regarding the coloring issue, i think it would depend, if you’re on a live server i’d suggest using less.js, however i wouldn’t recommend having that once the site is finished because it could affect the performance.
Preprocessors are a big topic, maybe it would be better to start testing on a local HTML page and once you get a hang of it transition to the child theme.
Best regards,
Josue-
This reply was modified 9 years, 2 months ago by
Josue.
Hi,
The reason i asked to disable auto-rotation was so i can debug the slider caption, would be easier if you could hand me a WordPress administrator account via private reply so i can test the slider settings as needed.
Regards,
Josue-
This reply was modified 9 years, 2 months ago by
Josue.
Hi,
Try enclosing the code in a shortcode instead, you can do that with this code in 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]
.Best regards,
JosueMay 12, 2016 at 1:06 pm in reply to: Slowly re-coloring in style.css – should I use Sass or Less? #631319Hi,
If you include a .scss it won’t work because it’s not meant to work that way, a preprocessor is meant to produce a .css file. LESS does have the option to compile .less files live (less.js), that should work but it will require more set-up.
Best regards,
JosueMay 12, 2016 at 12:58 pm in reply to: Multiple Fullwidth Menu – not showing and in wrong position #631317Hey!
Try adding this code to the Quick CSS:
#top .av-submenu-container { position: static; }
Cheers!
JosueHi John,
It’s fixed, you had jQuery included on a Widget – http://screencast.com/t/yxoTERV8, WP already includes jQuery so when another one is present it tends to cause these kind of issues.
Best regards,
JosueHey,
Please specify which version of IE is presenting problems and on which OS, screenshots of the issues would help too.
Best regards,
JosueHey,
You could use multiple buttons shortcodes as ‘captions’ instead of the default 2 buttons option:
[av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello']
Best regards,
JosueMay 12, 2016 at 12:06 pm in reply to: Create responsive border with text floated left and right #631287Hey,
Try adding
overflow: hidden
to your border code:.border-top-bottom { border-top: 1px solid #000000!important; border-bottom: 1px solid #000000!important; overflow: hidden; }
Best regards,
JosueHi,
1. Deleting it from a Gallery element won’t remove it unless you do it from Media.
2. Enfold does not create folders for file uploads, that’s entitled to WordPress -which by default- will create folders using the current date the file is uploaded.
Best regards,
JosueHi,
Seems to be caused by the images spacing, try setting the grid row background to #e8dfd8.
Regards,
JosueHi,
Don’t reduce the menu items width with negative margins:
.avia-menu-text{font-weight:normal;letter-spacing: 1px; margin-left: -5px; margin-right: -5px;}
Instead, reduce the padding of the parent element:
.av-main-nav > li > a{ padding: 0 6px; }
Best regards,
Josue -
This reply was modified 9 years, 2 months ago by
-
AuthorPosts