Forum Replies Created
-
AuthorPosts
-
Hello,
no problem using CSS and I’d also add a margin so the neighbour won’t overlap:
#menu-item-828 .avia-menu-text { background-color: red !important; margin-right: 20px; }
Die Label:
label { font-size: 22px !important; }
Den Titel kannst du im Kontaktformular selbst unter “Erweitert” auf H1 stellen oder wenn er auf Standard steht wie folgt vergrößern:
form h3 { font-size: 32px; }
- This reply was modified 3 years, 12 months ago by cherrmann.
November 22, 2020 at 5:14 pm in reply to: Problem with content copy from one page to another #1262127Hello,
without knowing what exactly you want to do:
You can clone pages/posts using a plugin like // https://wordpress.org/plugins/duplicate-post/
Hallo,
du kannst das leicht mittels CSS hinbekommen (Allgemeines Sytling > Quick CSS):
z. B:
input { height: 85px; font-size: 36px; }
evtl brauchst du !important:
input { height: 85px; font-size: 36px !important; }
another update (still a lot of strings missing):
http://www.mediafire.com/file/fqp75t68cyny6gz/de_DE.zip/file
You can disregard the previous contribution
1) Probably you just see 2 versions of the theme where several UI things have been changed !?
2) I don’t think there’s a built in option, but you could use custom CSS to override the default:.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title { visibility: visible; -webkit-animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1); animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1); }
See also // https://kriesi.at/support/topic/fullslider-caption-animation-speed/
November 15, 2020 at 1:56 pm in reply to: Edit Testimonial section – changing order of text and image #1260583You can create a shortcode path in the child theme using the following filter. This allows you to override the theme’s shortcodes. Please also check the documentation here:
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Aquí recomiendan un plugin:
https://kriesi.at/support/topic/flip-boxes/Einstellungen › Allgemein › Datumsformat › j. F Y
Ok let’s try – here an updated german informal, not complete, but updated/added a bunch of strings:
https://www.mediafire.com/file/yu9dxxwlnqgm93b/de_DE.zip/fileTo correct typos and add translations, is github the way to go? I see a PR from 04.06 there. See https://github.com/KriesiMedia/enfold-language-files/pull/2
https://github.com/KriesiMedia/enfold-language-files/pull/19You can achieve that using the masonry gallery under media elements
these are ‘ON’
You made my day, Yigit, can be closed finally.
Don’t you want to fix the missing ‘l’ in style.css of the child theme some day? I mean, you said you would. Would make my life a lot easier ;-)
Hello, did you check the permalinks settings?
Please go to yourdomain/wp-admin/site-health.php?tab=debug and copy the report here – you may prefer to do so in private, but in that case I won’t be able to help further, since I’m not part of the official team.
Please check your maximum upload file size which is shown on the “Media > Add New” page. Also also be aware to upload the theme file only, not the full package from themeforest.
You can exclude an element on the homepage only using its class “home” and CSS like so:
.home .class_of_my_element_I_dont_want_to_show{
display: none;
}November 2, 2020 at 4:48 pm in reply to: Icon list headings not underlined when they are links #1257646untested, but try:
.avia-icon-list a {
text-decoration: underline;
}I can tell you that it is a standard enfold file. Did you check if it is there by ftp? Maybe the server is just not serving it
You should never share credentials publically!!! Please immediately change these. Probably you already have been hacked.
Post your credentials next time under ‘Private Content’ under this box
Thank you for that valuable hint. When you click on the anchor link some click handler seems to intermit so you have a short flickering, though. But the solution is good enough, can be closed.
This may help you, enter as custom CSS/Quick CSS:
ul.sub-menu { margin-top: 120px; }
Hi Ismael, it’s not that easy. I’m using a workaround now which I’d like to share with you:
$output .= '<section id="'.$toggle_atts['custom_id'].'" class="av_toggle_section" '.$markup_tab.' >'; $output .= ' <div role="tablist" class="single_toggle" '.$this->create_tag_string($toggle_atts['tags'], $toggle_atts).' >'; $output .= ' <p data-fake-id="#'.$toggle_atts['custom_id'].'" class="toggler '.$titleClass.$inherit.'" '.$markup_title.' '.$colors.' '.$hover_styling_markup.' role="tab" tabindex="0" aria-controls="' . $toggle_atts['custom_id'] . '-container">'.$toggle_atts['title'].'<span class="toggle_icon" '.$icon_color.'>'; [...] $output .= ShortcodeHelper::avia_apply_autop( ShortcodeHelper::avia_remove_autop( $content ) ); $output .= ' <a href="#'. $toggle_atts['custom_id'] . '">back to top</a>'; $output .= ' </div>'; $output .= ' </div>'; $output .= ' </div>'; $output .= '</section>';
but what’s not working is to use toggles.php in a child theme’s folder (rebuilding the structure config-templatebuilder\avia-shortcodes\toggles)
No thank you I’m fine with that, still wondering why I needed to add CSS to make it work like the demo, but well, who cares.
Just an additional thought: If the button could ‘come down’ after some scrolling and then be clickable at the bottom. After click to close it would switch back into position.
-
AuthorPosts