Forum Replies Created
-
AuthorPosts
-
Cool.
Send them via my website contact form: https://digitalessence.net/contact/
Click on the Contact form element and then scroll down and there is the option “Contact Form Captcha” with a dropdown list and you can select: Don’t Display Captcha.
February 21, 2019 at 6:41 pm in reply to: Google Ads Conversion Script Needs to Be Added to Page Header #1070055Put a copy of header.php into your child theme and add the code there.
I can’t help as you have made the link private and I therefore can’t see it.
The other option could be to force the scrollbar to always be visible
html { overflow-y:scroll; }
Or add more content to the pages so that they all scroll.
Can you provide a link?
Or try:
.SELECTORNAME:hover {text-decoration:none;}
I can’t replicate any tooltips when testing this but I see the icon flipping on hover.
Add this to stop the icon flipping
.avia-icongrid-flipbox li:hover .avia-icongrid-front, .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{ -webkit-transform: rotateY(0deg); transform: rotateY(0deg); }
Would it be easier to use the icon Box element in columns?
Not sure if this helps or not. Can you provide a link?
February 20, 2019 at 1:50 pm in reply to: icon-grid element icons too much empty space on mobile devices. #1069456Can you target them with a media query?
@media only screen and (max-width: Number of pixels where it starts to not look rightpx) { .selector {do something} }
February 20, 2019 at 1:46 pm in reply to: HOW TO: Add a class to the $post_class in postslider.php if the post date is old #1069453February 19, 2019 at 12:05 pm in reply to: Advanced lay-out builder and other builders in back-end #1068888Hi,
Not 100% sure what you mean. Are you editing a page and just seeing shortcode information? Does the button up the top say Advanced Layout Editor or Default? If Advanced then click it.
I’d I’m way off, please post a screenshot of what you are seeing.
Hi,
Pages > Home > Color Section > Edit > Section Background
February 19, 2019 at 11:38 am in reply to: HOWTO: Reduce the height (vertical padding/margin) in the header menu #1068880Perfect thank you.
I’d added the height to the avia-menu and the line-height to the a link but not the height.Will add this to my snippets on Gist.
.html_header_top .av_bottom_nav_header #header_main_alternate .av-main-nav-wrap, .html_header_top .av_bottom_nav_header #header_main_alternate #avia-menu { height: 35px !important; } .html_header_top .av_bottom_nav_header #header_main_alternate .main_menu ul:first-child > li > a { height: 35px; line-height: 35px; }
A licence is required for each website.
Yes, but that CSS edit will apply to all the pages.
I have also noticed that the menu is doing the same thing.
The Azienda page doesn’t have a scroll bar. You can replicate this by testing other pages with and without scroll bars or reducing the vertical height of your browser.
try changing the left value to right.
ie
right: 47%;
February 18, 2019 at 2:25 pm in reply to: HOW TO: Add a class to the $post_class in postslider.php if the post date is old #1068369For anyone else who is interested in how I have achieved this and/or can see a better way of doing it.
I’ve added the following to postslider.php
// Detect if post is in the past and if so add a custom Class "oldpost" if (strtotime(get_the_date( "Y-m-d", $the_id )) < strtotime(date("Y-m-d"))) { $post_class = "post-entry post-entry-{$the_id} oldpost slide-entry-overview slide-loop-{$post_loop_count} slide-parity-{$parity} {$last}"; } else { $post_class = "post-entry post-entry-{$the_id} slide-entry-overview slide-loop-{$post_loop_count} slide-parity-{$parity} {$last}"; }
I then uploaded postslider.php to child-theme/shortcodes/ (thanks @Guenni007) and added the following to my functions.php file
// Enable shortcodes to be loaded from child theme - used for postslider.php edits add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
- This reply was modified 5 years, 9 months ago by DigitalEssence.
February 18, 2019 at 2:16 pm in reply to: HOW TO: Add a class to the $post_class in postslider.php if the post date is old #1068366You should be using the $the_id there too, not the $post_id, like this
Doh!
That’s perfect thanks. I can now change the look of past events in the post slider.
Please mark this as resolved and big thanks for your help.
Hi Xinspirit,
did you have any luck with this plugin?
I’ve tested it and my blog order is exactly the same whether it’s activated or not.
January 15, 2019 at 6:55 pm in reply to: Responsive layout changed so 1st image is full width then in 2x column #1054269I’ve also got an issue with a 1/5 column and 4/5 where the blog posts overlap the 1/5 title (h1) as the screen is reduced before everything snaps to single column.
I’ve removed all of my custom coding from the css so this is just Enfold.
January 15, 2019 at 6:36 pm in reply to: Responsive layout changed so 1st image is full width then in 2x column #1054249Hi,
I’m using Chrome browser to test the responsive breakpoints and this is where I am seeing the issue with the large image with smaller images below.
January 11, 2019 at 8:13 pm in reply to: Responsive layout changed so 1st image is full width then in 2x column #1052880Thanks Victoria, that’s the Post slider working as expected.
I’d added the margin-left:70px; as I was trying to remove the margin/padding from around the 1/5 and 4/5 columns so they were full width. I will revisit my code.
Do you have a similar fix for the partner/Logo Element as even if I remove all of my custom code, the layout issue is still present.
Thanks.
Just create a new template file.
Hi,
I copy the header.php file from the enfold directory and place it into my child theme then just add any code in the appropriate place.
You can add Google Analytics Tracking Code via the theme: Google Services but I like to keep everything in php files.
Just create the page how you want it to look then click on templates and Save entry as template.
January 9, 2019 at 12:47 pm in reply to: How to remove "Read More / Weiterlesen" Button / Link from Page AND CODE #1051793I’ve run a grep on my copy of Enfold here and the only other file that contains the text “read-more-link” is postslider.php on line 465.
It’s got to be one of those files.
If you are using the Chrome browser, right hand click on the element and Inspect it.
Once you know the name of the div, just add a CSS selector to hide it.
eg:
.continue-reading a {display:none!important;}
You may want to hide the parent div of the link rather than the a link but just play about until it goes. Same goes for the excerpt.
In this example I am removing the read more link and the Comments and / divider.
.slide-meta-del {display:none!important;} .read-more-link {display:none!important;}
Hope that helps.
January 6, 2019 at 5:49 pm in reply to: Change background colour of Blog post element using :nth-child(n) #1050592Hi Rikard,
I was sure that all of these 1/3 elements were all children of the parent div but obviously not.
I’ve managed to implement it by using the
slide-loop-{$post_loop_count}
on line 443 of \enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php as this is the post count number.this was I can target each specific 1/3 as required:
eg:
.homepage-post-block .slide-loop-1 {outline:1px solid blue;} .homepage-post-block .slide-loop-4 {outline:1px solid red;}
Thanks for your help and hopefully if anyone else is looking to do this, this code will help them.
January 4, 2019 at 11:12 am in reply to: Change background colour of Blog post element using :nth-child(n) #1049941Hi,
yes that link is an example where there are 4 .av_one_third blocks and the 4th is the same colour as the first despite me adding:
<style> .homepage-post-block .av_one_third img {width: 300px; } .homepage-post-block .av_one_third {width: 300px; float: left; margin:10px;} .homepage-post-block .av_one_third:nth-child(1) {background: #C9D1AD;} .homepage-post-block .av_one_third:nth-child(2) {background: #99B0B0;} .homepage-post-block .av_one_third:nth-child(3) {background: #99CFCC;} .homepage-post-block .av_one_third:nth-child(4) {background: #000;} .homepage-post-block .av_one_third:nth-child(5) {background: #C2D966;} .homepage-post-block .av_one_third:nth-child(6) {background: #C9D1AD;} </style>
The original full page is at: http://tweeddale.digitalessence.net/
Thanks.
December 18, 2018 at 7:35 pm in reply to: Enfold 4.5 "An error A valid URL was not provided." #1046993Please see this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/
The simple way to fix is to just upload the theme manually by FTP.
Hi,
a common cause of this is child theme with a older header.php file.
The header.php was changed a few versions ago and your lightbox issue could be a result of using the older file, please try updating your file with the current one from the parent theme. Please retain your older file as it may contain customizations that you will wish to incorporate into your new header.php
-
AuthorPosts