Hi,
Add this to quick css:
h3.slide-entry-title.entry-title{
line-height:15px!important;
}
.blog-categories.minor-meta a{
font-size:10px!important;
}
Best regards,
Jordan Shannon
Hello,
I want to change H3 to 21px but it does not work in the setting and custom
#top #wrap_all .all_colors h3 {
font-size: 21px;
}
Please help :)
Regards Hans Blancke
Hi,
I guess I am missing something.
I want to change the font of a textblock to caveat.
So i tried to apply it, using a class, with the following code:
.cc_written_font {font-family: 'caveat', sans-serif !important; font-size:20px;}
The default font is different from caveat.
Now, I can see caveat in the theme font dropdown list, but when I try to apply it using CSS it is not working.
Do I need to load/implement it with some extra code?
Thanks
Right now I’m testing this on a staging site, so you can look at it there. I’ll provide credentials. Feel free to use the form to register/test/etc.
How it works is this:
Visitors go to the /register page, and complete the multi-step form. This is implemented using Gravity Forms, with the form shortcode on this page. I am using the Pro version of Gravity Forms and the User Registration add-on, so after the user submits the form, they are emailed a link to activate their account. When the click the link, they are taken to a page using active.php (in my child theme, per the directions at https://gravitywiz.com/customizing-gravity-forms-user-registration-activation-page/). This is the page that I’m attempting to format. I’ll also need to format the error and success versions of that page as well.
The active.php code is:
<?php
global $gw_activate_template;
define( 'WP_INSTALLING', true );
$gw_activate_template = new GWActivateTemplate();
$gw_activate_template->template();
class GWActivateTemplate {
function __construct( $args = array() ) {
extract( wp_parse_args( $args, array(
'template_folder' => basename( dirname( __file__ ) )
) ) );
$this->template_folder = $template_folder;
$this->load_gfur_signup_functionality();
$this->hooks();
}
function load_gfur_signup_functionality() {
if( function_exists( 'gf_user_registration' ) ) {
$signups = gf_user_registration()->get_base_path() . '/includes/signups.php';
} else {
$signups = GFUser::get_base_path() . '/includes/signups.php';
}
// include GF User Registration functionality
require_once( $signups );
GFUserSignups::prep_signups_functionality();
}
function hooks() {
add_action('body_class', create_function('$classes', '$classes[] = "gfur-activate"; return $classes;'));
}
function do_activate_header() {
do_action( 'activate_wp_head' );
}
function wpmu_activate_stylesheet() {
?>
<style type="text/css">
form { margin-top: 2em; }
#submit, #key { width: 90%; font-size: 24px; }
#language { margin-top: .5em; }
.error { background: #f66; }
span.h3 { padding: 0 8px; font-size: 1.3em; font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif; font-weight: bold; color: #333; }
</style>
<?php
}
function has_activation_key() {
return !empty($_GET['key']) || !empty($_POST['key']);
}
function get_activation_key() {
if( isset( $_GET['key'] ) && $_GET['key'] )
return $_GET['key'];
if( isset( $_POST['key'] ) && $_POST['key'] )
return $_POST['key'];
return false;
}
function is_blog_taken( $result ) {
return 'blog_taken' == $result->get_error_code();
}
function is_blog_already_active( $result ) {
return 'already_active' == $result->get_error_code();
}
function template() {
do_action( 'activate_header' );
add_action( 'wp_head', array( $this, 'do_activate_header' ) );
add_action( 'wp_head', array( $this, 'wpmu_activate_stylesheet' ) );
get_header();
?>
<div id="content" class="widecolumn">
<?php if ( !$this->has_activation_key() ) {
get_template_part( $this->template_folder . '/activate', 'no-key' );
} else {
$key = $this->get_activation_key();
$this->result = GFUserSignups::activate_signup($key);
if ( is_wp_error( $this->result ) ) {
get_template_part( $this->template_folder . '/activate', 'error' );
} else {
get_template_part( $this->template_folder . '/activate', 'success' );
}
} ?>
</div>
<script type="text/javascript">
var key_input = document.getElementById('key');
key_input && key_input.focus();
</script>
<?php
get_footer();
}
}
?>
Right now, the activate page doesn’t display the theme header properly. It seems to be transparent and/or just not appearing at all, with the body of the page overlapping it.
Hey juanraubeda,
Add this to quick css:
article h3.slide-entry-title.entry-title {
font-size:12px!important;
}
Best regards,
Jordan Shannon
Good Morning! How can I change the font size of the titles and news categories of my website? I want to change the size because they come out so big
Hi!
Ah, that works fine :-) Great!
Can I also change the font color and size?
Can I remove the border?
Can I set different submenu colors as well? Now they have red backgrounds as well :-(
All the best!
-
This reply was modified 6 years, 4 months ago by
vollstark.
Hello, for mylabrador.it I used the same font (Rubik) and the same font size (17px) but compared to this site (https://www.paginegialle.it/magazine/animali/massaggi-per-cani-come-prenderti-cura-del-tuo-fido-6896) I see different
Hello Enfold Team,
I need a fix to set mobile breakpoint in columns to occur with iPad screen widths (1024px)
A short term fix with CSS would be most welcome, but you should also add breakpoint=1024px as selectable option in the column settings.
I added a screenshot.
I also need a fix to set font size only for 1024 resolution to a different entry with certain headings.
You should also modify the heading shortcodes to support 1024 width as a selectable option.
Also in these resolutions, I would like to set container width only for main menu (rest stays same) to 90% so my Logo doesnt get crippled and/or overlap with menu items.
Thanks for helping!
-
This topic was modified 6 years, 5 months ago by
Flow9999.
Hello. On my page is an H1 element. It has a font-size of 40px specified, and that assignment has come from this entry in the file wp-content/uploads/dynamic_avia/enfold_child.css:
#top #wrap_all .all_colors h1{color:#000000;font-size:40px;font-family: 'halisr black', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;}
How exactly has that entry been added to enfold-child.css?
To be clear, I’m not asking how to change the font size of this element. I know how to do that. That is not what I am asking. I am asking how this assignment of font-size: 40px has been assigned to the element #top #wrap_all .all_colors h1 in the file enfold-child.css. Has it come from some page in Theme Options? If so, what page?
Thanks in advance.
Edit: Actually, hold off on answering that question. Let me do some more troubleshooting on my end. I will get back to you here.
Edit 2: OK I did some more troubleshooting. Here is the real question :-) On all my pages there seems to be an element with ID of wrap-all (screenshot). Should I expect all my page content to be inside this element?
-
This topic was modified 6 years, 5 months ago by
FeedXL2019.
I’m baffled….
When I have the text block at full width, the font looks great. But as soon as I make it, for instance, 1/2 width, it changes.
Look at these two pages: http://thundercom.org/photography/ and http://thundercom.org/diving/ The diving page is the “good” one.
I went into the css and added this to try and force it, but no go. What’s causing this?
.body {font-family: roboto;
font-size: 16px;
font-weight: 400;
color: #666666;
}
.p {font-family: roboto;
font-weight: 400;
font-style: normal;
color: #666666;
}
Hello,
Please advise how to make spacing between the lines even (in content)?
How to change font family and size (for content) if adjustments in Advanced Styling don’t work?
Thank you!
Hi,
When I look at your example site the phone and mail icons are next to the text links, so to achieve this I changed your custom html widget
<ul class="contact1"><li class="phone"><span class="in1"><a href="tel://1-555-555-5555">[av_font_icon icon='ue854' font='entypo-fontello' size='20px'][/av_font_icon]1-555-555-5555</a></span></li> <li class="mail"><span class="in1"><a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' size='20px'][/av_font_icon] (Email address hidden if logged out) </a> <a href="#">Free Consultation</a></span></li></ul>
and added this css:
.in1 {display: inline-block !important; }
.contact1 ul,.contact2 ul {
list-style: none!important;
list-style-type: none!important;
vertical-align: bottom !important;
}
ul.contact1 li {
display: inline!important;
vertical-align: bottom !important;
}
.phone a,.mail a {
font-size: 20px;
line-height: 20px;
}
Please clear your browser cache and check, and feel free to adjust to suit.
Best regards,
Mike
Hi Arianna,
You can upload screenshots to a service like Dropbox or http://imgur.com and give us the links here.
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
font-size: 16px;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hey jb84,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#top #header .avia_mega_div .sub-menu .avia_mega_text_block a {
font-size: 13px;
}
If you need further assistance please let us know.
Best regards,
Victoria
I’m working on a concept and stuck with the following: I’d like to get my logo centered on a desktop, but aligned left on mobile screens. The menu should be on the right on a screens. The problem is that I replaced my logo with text using this in my functions.php:
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub) {
$sub .= "LAURA DANIQUE";
return $sub;
}
And in quick CSS:
.logo img { display: none !important; }
.logo .subtext {
font-size: 38px;
color: #000000;
position: relative;
top: 34px;
}
.logo i {
font-size: 14px;
}
.logo > a {
text-decoration: none;
}
.logo a {
line-height: 20px;
}
.responsive #top .logo {
display: block;
height: 120px !important
}
.responsive .logo a {
display: block
}
@media only screen and (max-width: 768px) {
.subtext { font-size: 30px !important; }}
@media only screen and (max-width: 480px) {
.subtext { font-size: 20px !important; }}
#top div .logo {
float: none;
position: absolute;
left: 50%;
z-index: 1;
transform: translate3d(-50%, 0, 0);
}
.avia_textblock a {
font-weight: bold;
}
Unfortunately the logo disappears on a smartphone screen and runs through the navigation menu on a tablet screen.
Hello, Victoria,
Thank you for your answer.
Sorry, but it doesn’t work. I tried to insert the code in both ways, as you said, but nothing works.
I tried to change the size of the font but nothing moved.
With this code we act on the mega menu, but the height of the font of the mega menu does not bother me. Rather, it is the height of the link font (in the drop-down menus) that is the problem.
In addition, why some of the mega menu locations fit well (Example: LES PRIX –>Prix des kits de granulat de marbre).
Only “CONTACTS” and “RESI Group” do not register well. Why ?
Another thing again, I have several identical sites with the same ENFOLD theme. I don’t have this problem on the other sites. Why ?
I hope that these thoughts will help you.
Thank you in advance for your answer.
Eric Bertolaso (Kidbert6).
Hey RezNation,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width:767px){
#full_slider_1,
#full_slider_1 .av_slideshow_full.avia-slideshow,
#full_slider_1 .avia-slideshow-inner,
#full_slider_1 .avia-slideshow li,
#full_slider_1 .avia-slideshow li img {
min-height: 240px;
}
#full_slider_1 .avia-slideshow li img {
width: 140% !important;
max-width: auto;
}
.html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
padding-top: 0px;
}
.avia_transform .av_slideshow_full .avia-caption-title {
font-size: 28px !important;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Eric Bertolaso,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#header .mega_menu_title {
font-size: 15px;
line-height: 1em;
font-weight: normal;
}
You can play with the values here to achieve the desired result.
If you need further assistance please let us know.
Best regards,
Victoria
Hi Yascha,
Go to Enfold > Advanced Styling > (Select an element to customize) set to: Cookie Consent Link and Info Button, then click the Edit Element and set the font size.
Do this as well on Cookie Consent Dismiss Button.
Hope it helps.
Best regards,
Nikko
Hi,
Add this to quick css:
.av-share-box ul li a{
font-size:30px!important;
}
Best regards,
Jordan Shannon
Hi Sophieja,
try this:
.avia-cookie-close-bar, .avia-cookie-link-btn {
font-size: 10px !important;
}
To change the background color of your cookie message, Victorias solution actually should work. Did you try to use this code by using an “!important”? It would be like
.avia-cookie-consent {
background-color: rgba(50, 39, 39, 0.64) !important;
}
Hi,
I tried to login to 360baliexplore.com but was unable to, so for the icons and links in a footer widget where they would be stacked please try this code in a custom html widget:
<ul class="contact2"><li class="phone"><span class="in2"><a href="tel://1-555-555-5555">[ av_font_icon icon='ue854' font='entypo-fontello' size='20px'][ /av_font_icon]1-555-555-5555</a></span></li> <li class="mail"><span class="in2"><a href="mailto: (Email address hidden if logged out) ">[ av_font_icon icon='ue805' font='entypo-fontello' size='20px'][ /av_font_icon] (Email address hidden if logged out) </a></span></li></ul>

for the icons and links in the topbar where they would be inline please try this code in the “Phone Number or small info text” field:
<ul class="contact1"><li class="phone"><span class="in1"><a href="tel://1-555-555-5555">[ av_font_icon icon='ue854' font='entypo-fontello' size='20px'][ /av_font_icon]1-555-555-5555</a></span></li> <li class="mail"><span class="in1"><a href="mailto: (Email address hidden if logged out) ">[ av_font_icon icon='ue805' font='entypo-fontello' size='20px'][ /av_font_icon] (Email address hidden if logged out) </a></span></li></ul>

this is the css for both, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.in1 {display: inline-block !important; }
.contact1 ul,.contact2 ul {list-style: none!important; list-style-type: none!important;}
ul.contact1 li { display: inline!important;}
After applying the css, Please clear your browser cache and check.
Best regards,
Mike
UPDATE
(1) I wonder if you wouldn’t mind just confirming that these are all needed in the avia folder:
(I’m trying to figure out why quick CSS often doesn’t work for a few days despite clearing cache)
avia-gutenberg-dynamic-enfold-child.css
enfold.css
enfold_child.css
(2) Great, I can confirm this code works LIKE A TREAT THANKS :-)
/* TAB SECTION ENFOLD SUPPORT – TRIAL 26 OCT 2019 */
.av-tab-section-outer-container:after {
content: ‘\e879’;
font-family: ‘entypo-fontello’;
font-size: 50px;
position: absolute;
top: 100px;
z-index: 1000;
right: 20px;
}
.av-tab-section-outer-container:before {
content: ‘\e878’;
font-family: ‘entypo-fontello’;
font-size: 50px;
position: absolute;
top: 100px;
z-index: 1000;
left: 20px;
}
Hi,
.avia-cookie-consent {
font-size: 10px;
}
This takes care of the font size.
Best regards,
Basilis
Hi,
I entered the suggested code, but entered it does not change. I clean also the cache, but nothing.
All the code I entered for the accodiong is:
/*add icon in accordion*/
/* Custom Accordion Icon */
.family .toggler:before {
content: “\f104″;
font-family: flaticon;
position: relative;
font-size: 28px !important;
}
.family .toggler:before {
margin-right: 15px !important;
}
.family [data-fake-id=”#toggle-id-2”] {
content: “\f105”;
font-family: flaticon;
}
.family .activeTitle .toggler:before {
content: “\f104”;
font-family: flaticon;
}
.js_active .av-elegant-toggle .toggler {
padding: 35px 60px 30px 15px;
}
Another suggestion?
Thank you.
Hi Nikko,
I will try on Staging first – but will you add the fix to the next Enfold release? This is not just happening to this site, right? Otherwise, it would be wise to find out what is causing it.
As for the Avia buttons: they do not show on any browser, this is a Widget on the footer, and my apologies, these are Avia font icons:
[ av_font_icon icon=’ue8f4′ font=’entypo-fontello’ style=” caption=’Facebook’ link=’manually,https://www.facebook…’ linktarget=’_blank’ size=’40px’ position=’left’ color=”][ /av_font_icon]
Like this but only on the footer of the blog (all the other pages and posts are perfect):

Thank you, Nikko!
Havi
Hey Manuela,
Since you already have this code:
.family .toggler:before {
content: "\f104";
font-family: flaticon;
position: relative;
font-size: 28px !important;
}
You can target the 2nd one like this:
.family [data-fake-id="#toggle-id-2"] {
content: "\f105";
}
If you have a 3rd one just copy and past the css code, replace #toggle-id-2 with #toggle-id-3, and change the content value.
Hope this helps.
Best regards,
Nikko
Hi Rikard,
Thank you for your reply. I have turned off all the compressions and enabled the deletion of old js/css files – however the font colour is still not changing. Just like before, it seems to only work for font size. I also emptied my caches of the browser and tried in different browsers.
Hi Victoria,
thanks. But both methods seems not to work…
And the second part of my question was how to reduce the font-size of the buttons. Comparing with the text the buttons are really big…
Best regards,
Sophie