Hi,
Thank you for the info.
You should apply the custom style to the more-link-arrow instead of the more-link container.
.bloglist-simple .more-link .more-link-arrow {
padding: 0;
margin: 0;
font-size: 0;
line-height: 0;
top: auto;
width: 30px;
height: 30px;
display: block;
border-width: 2px;
border-style: solid;
border-radius: 100%;
text-decoration: none;
overflow: visible;
float: right;
margin-left: 10px;
top: -7px;
position: relative;
}
Let us know if you need more help.
Best regards,
Ismael
reducing the font-size is not what I described. The problem shows when augmenting the font-size.
Please read my instructions to reproduce it. Specially step 3.
See screenshot at https://snipboard.io/NYE0br.jpg
-
This reply was modified 6 years ago by
etaerc.
Hi Victoria, this is the code I’m testing now. It works but I don’t know if it can crash for some element like color section etc.
<?php
/*
Template Name: Hotel Template
*/
if ( ! defined('ABSPATH') ){ die(); }
global $avia_config;
/*
* get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
*/
get_header();
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
do_action( 'ava_after_main_title' );
?>
<?php
global $wpdb;
$title_name = $wp_query->queried_object->post_name;
$customers = $wpdb->get_results("SELECT * FROM wp_misano_place WHERE name_control='$title_name'");
?>
<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
<div class='container'>
<main class='template-page template-portfolio content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'portfolio'));?>>
<div class='test'>
<?php foreach($customers as $customer){ ?>
<center><?php echo $customer->name; ?></center>
<center><?php echo $customer->telephone; ?></center>
<center><?php echo $customer->email; ?></center>
<center><?php echo $customer->address; ?></center>
<center><?php echo $customer->image_link; ?></center>
<?php } ?>
<?php echo do_shortcode('[av_textblock size="" font_color="" color="" av-medium-font-size="" av-small-font-size="" av-mini-font-size="" av_uid="av-k7yxfp65" custom_class="" admin_preview_bg=""]'.$title_name.'[/av_textblock]');
?>
</div>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-page.php and that will be used instead.
*/
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
get_template_part( 'includes/loop', 'portfolio-single' );
?>
<!--end content-->
</main>
<?php
//get the sidebar
$avia_config['currently_viewing'] = 'page';
get_sidebar();
?>
</div><!--end container-->
</div><!-- close default .container_wrap element -->
<?php
get_footer();
Hi etaerc,
https://share.getcloudapp.com/KouW9XL0 When I reduce the font-size there icons stay centered.
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Thank’s now is ok but I can’t undestand why is changed menu font and size, posts sidebar is more narrow, Title H1 is bigger. I didn’t touch any setting.
Content box is smaller than before! It is set 1310 px but it looks smaller.
And also in Google Chrome slide text in homepage disappears. There is some issue.
Also in page with hotels I can’t see contact form in sidebar. It’s cut. In mobile version is ok. In desktop version is cut.
-
This reply was modified 6 years ago by
soniavoice.
1. Go to the end of the page on “https://kriesi.at/themes/enfold/”
2. With the “WebDeveloper” in Firefox or a similar tool inspect the icon of the middle box “NEED SUPPORT?”,
This is <div class=”iconbox_icon heading-color ” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello”></div>
3. In the CSS-Rule for “.iconbox_top .iconbox_icon” change “font-size” to “40px”
4. The two boxes “NEED SUPPORT?” and “CHECK FORUM” will show a deplaced icon to the right. The first one “PRESALES QUESTION?” shows the icon centerd.
I’ve searched the forum and experimented with loads of elements but just can’t figure out how you get the main home page image with bits of text floating in.
Like in these two demos;
https://kriesi.at/themes/enfold-wedding/ – different fonts
https://kriesi.at/themes/enfold-construction/ – moving text
I’ve only used the image with caption which doesn’t allow the use of different fonts and sizes.
tx
Hi antiguanice,
You can change it’s size by adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top #wrap_all .av-alb-blogposts .entry-content-header .post-title.entry-title {
font-size: 15px;
}
Best regards,
Nikko
Ich möchte die Größe eines Icons ändern. Z.B. in einer Symbolbox.
Wenn ich das über “.iconbox_top .iconbox_icon { font-size: 30px; }” tue, dann ist das Symbol nicht zentriert.
Wie kann ich die Größe ändern?
See documentation here too:
https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options
if there are not too many individual social icons, I would recommend not to use font icons, but to use images (png’s) instead
For this you would have to find a suitable image file for the icon – e.g.: 
the whole thing is possible as circle too: 
To Register the new Icon on Enfold put this to your child-theme functions.php
function avia_add_custom_social_icon($icons) {
$icons['Kununu'] = 'kununu';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Now you can add on Enfold-Child Options – Social Profiles – the new icon ( it is at the end of the list : link maybe: https://www.kununu.com/ )
to have now the image for that new icon
you had to place this to your quick css
(the image dimensions depends on your other settings for social media icons – standard seem to be 30px):
#top #wrap_all .av-social-link-kununu a:before{
content: "";
width: 30px;
height: 30px;
float: none !important;
display: inline-block !important;
vertical-align: middle;
background: url(PATH-TO-YOUR-IMAGE/kununu-quad.png) no-repeat center center;
background-size: contain;
}
/**** hover style - just an example - if you make the image a bit smaller - you can style background-color ***/
#top #wrap_all .av-social-link-kununu:hover a {
-webkit-filter: hue-rotate(180deg);
filter: hue-rotate(180deg)
}
see here in my footer the example: https://webers-testseite.de/#footer
Hi Morticka,
We apologize for the delayed response.
Q1a: You can set the h3 size in Enfold > Advanced Styling or you can add this CSS code in Quick CSS (Enfold > General Styling):
#top #wrap_all .avia-content-slider h3.slide-entry-title {
font-size: 18px;
}
It would be hard to align everything especially if there’s a large difference in text count both in title and content.
Q1b: The size used by post slider is 495px (width) and 400px (height).
Q2: You can change breadcrumb’s color in Enfold > Advanced Styling, select Breadcrumbs.
Hope this is helpful.
Best regards,
Nikko
Hi Martin,
We apologize for the delayed response.
Please add this CSS code in Quick CSS, located in Enfold > General Styling:
#top .avia-cookie-consent-wrap {
background-color: rgba(0,0,0,0.6);
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#top .avia-cookie-consent-wrap .avia-cookie-consent {
background-color: white;
color: black;
box-shadow: 0 3px 10px rgba(0,0,0,.1);
border-radius: 5px;
position: static;
padding: 50px 20px 30px;
}
#top .avia-cookie-consent-wrap .avia-cookie-consent p.avia_cookie_text {
font-size: 17px;
padding-bottom: 16px;
}
#top .avia-cookie-consent-wrap .avia-cookie-consent .avia-button {
background-color: #fff;
color: #202020;
border: 1px solid #cdcdcd;
font-size: 17px;
border-radius: 5px;
padding: 14px 30px;
}
#top .avia-cookie-consent-wrap .avia-cookie-consent .avia-button.av-extra-cookie-btn {
background-color: #0056a4;
color: #fff;
}
Hope it helps :)
Best regards,
Nikko
I have created a slider on the home page of a site with Caption Titles, Caption Text, and a button link: https://1888coffee.com/
In responsive mode for phone/portrait, I would like to have the text hidden, but the button link showing. So I went into each Form Element and set Font Sizes to hidden for the text in that format. The Advanced > Link Settings has no version of this, no ability to set a size to display or not display.
In emulation mode on my browser it works – button only. But on my phone, nothing displays – text and button are both hidden.
Is there another setting I need to consider or some code that needs to be added?
Hi AlexBellaTropea,
As for the header ‘review us’, please replace this CSS code:
#top .social_bookmarks .av-social-link-Tripadvisor {
width: 106.5px;
}
with this one:
#top .social_bookmarks .av-social-link-Tripadvisor {
width: 111px;
}
#top #header_meta .social_bookmarks .av-social-link-Tripadvisor:before {
font-size: 14px;
}
As for mobile devices, add this CSS code:
@media only screen and (max-width:767px) {
#top #socket .copyright {
display: block;
float: none;
margin-bottom: 16px;
text-align: center;
}
#top #socket .social_bookmarks {
display: block;
float: none;
height: auto;
margin-left: 0;
text-align: center;
}
#top #socket .social_bookmarks li,
#top #socket .social_bookmarks li a,
#top .social_bookmarks:before {
float: none !important;
display: inline-block !important;
}
#top #socket .social_bookmarks li {
margin: 0 4px;
}
#top #socket .social_bookmarks:before {
margin-right: 2px;
}
}
Hope this helps.
Best regards,
Nikko
Hi SaraMichelle,
This will be very difficult to adjust for all screen sizes. You can try using media queries to reduce the heading font and the padding for the text section but the boxes might not match on all screen sizes.
Best regards,
Victoria
Hello,
After updating to Enfold latest version I have a problem wirth sticky footer in mobile mode (resolution under 1150px):
> footer height is too low
> buttons are half visible
> in very low resolution they don’t appear on the same line
I tried to modify previous settings in style.css but it does not make any effect.
This is footer widget code
<div id="outer">
<div class="inner"><a class="avia-button avia-color-custom avia-size-small classe-bouton-autre-footer" style="background-color: #258799; color: #ffffff;" href="Tel:+33695363908">[av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='18px' position='center' color='' av_uid='av-2a1d4h'][/av_font_icon]</a></div>
<div class="inner"><a class="avia-button avia-color-custom avia-size-small open-popup-link classe-bouton-autre-footer" style="background-color: #258799; color: #ffffff;" href="#test-popup">[av_font_icon icon='ue805' font='entypo-fontello' style='' caption='' link='' linktarget='' size='18px' position='center' color='' av_uid='av-2844u9'][/av_font_icon]</a>
<div id="test-popup" class="white-popup mfp-hide">[av_contact email=' (Email address hidden if logged out) ' title='Votre message' button='Envoyer' on_send='' sent='Merci, on vous répond très rapidement !' link='manually,http://' subject='' autorespond='' captcha='' form_align='' color='' admin_preview_bg='' av_uid='av-cq78u9']
[av_contact_field label='Nom' type='text' options='' multi_select='' av_contact_preselect='' check='is_empty' width='' av_uid='av-adz1w1'][/av_contact_field]
[av_contact_field label='Téléphone' type='text' options='' check='' width='' av_uid='av-8snnhd'][/av_contact_field]
[av_contact_field label='Adresse mail' type='text' options='' multi_select='' av_contact_preselect='' check='is_email' width='' av_uid='av-6weaz5'][/av_contact_field]
[av_contact_field label='Sujet' type='text' options='' multi_select='' av_contact_preselect='' check='is_empty' width='' av_uid='av-697gyp'][/av_contact_field]
[av_contact_field label='Message' type='textarea' options='' multi_select='' av_contact_preselect='' check='is_empty' width='' av_uid='av-4lc4dd'][/av_contact_field]
[/av_contact]</div>
</div>
<div class="inner"><a class="avia-button avia-color-custom avia-size-small classe-bouton-autre-footer" style="background-color: #258799; color: #ffffff;" href="https://wa.me/33695363908">[av_font_icon icon='ue800' font='fontello' style='' caption='' link='' linktarget='' size='18px' position='center' color='' av_uid='av-2a1d4h'][/av_font_icon]</a></div>
<div class="inner"><a class="avia-button avia-color-custom avia-size-small classe-bouton-autre-footer trekker-pro-booking" style="background-color: #258799; color: #ffffff;" href="https://book.trekker.fr/canyon-spirit" target="blank">[av_font_icon icon='ue859' font='entypo-fontello' style='' caption='' link='' linktarget='' size='18px' position='center' color='' av_uid='av-2a1d4h'][/av_font_icon]</a></div>
</div>
This is css related to widget code
@media only screen and (max-width: 1150px) and (min-width: 767px) {
#footer { padding: 0 !important; }
#footer .widget{
margin-top:-22px!important;
margin-bottom:-30px!important;
}
.classe-bouton-reserver-footer {
min-width: 220px!important;
max-width: 220px!important;
min-height: 40px!important;
max-height: 40px!important;
transform: translate(0%, -6%);
}
.classe-bouton-autre-footer {
min-width: 120px!important;
max-width: 120px!important;
min-height: 40px!important;
max-height: 40px!important;
}
}
@media only screen and (max-width: 766px) {
#footer { padding: 0 !important; }
#footer .widget{
margin-top:-22px!important;
margin-bottom:-50px!important;
}
.classe-bouton-reserver-footer {
min-width: 120px!important;
max-width: 120px!important;
min-height: 40px!important;
max-height: 40px!important;
transform: translate(0%, -6%);
}
.classe-bouton-autre-footer {
min-width: 80px!important;
max-width: 80px!important;
min-height: 40px!important;
max-height: 40px!important;
}
}
Many thanks in advance for your help.
-
This topic was modified 6 years ago by
kumharas.
You’re so counseling-resistant.
please individual height – no equal heights – no gap –
if you don’t make it now, then my support for you ends here with my 6000th post.
Hope you can let a mod login to your backend – I’m desperate here!
See with your images and text: https://webers-testseite.de/griditems/
here is the shortcode: Edit with link to your images:
[av_section min_height='' min_height_pc='25' min_height_px='500px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#78b2b6' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='outlines-flex' custom_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-zqkdpc']
[av_one_fourth first min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter size-full wp-image-37087" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-1-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">California Based Professionals</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37088 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-2-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Trusted by Multi-Billion Dollar Customers</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37089 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-3-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Customized and Secure Intake of Consumer Requests</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37091 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-4-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Responsive Customer Service</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth first min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37091 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-5-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Privacy Law Knowledge Base</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37092 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-6-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Licensed in California</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37093 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-7-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Trusted Privacy Partner</h4>
[/av_textblock]
[/av_one_fourth][av_one_fourth min_height='' vertical_alignment='av-align-middle' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='25px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-k7stpf2d']
[av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='custom' color='#ffffff' id='' custom_class='' av_uid='av-k7utm0tl' admin_preview_bg='']
<img class="aligncenter wp-image-37094 size-full" src="https://californiadataprivacyact.com/wp-content/uploads/2020/03/Number-8-WHT-80x80.png" alt="" width="80" height="80" />
<h4 style="text-align: center;">Ongoing New Data Privacy Law Support</h4>
[/av_textblock]
[/av_one_fourth]
[/av_section]
Hi s29ers,
Try using em, like:
@media only screen and (max-width: 767px) {
h1{
font-size: 2em !important;
}
}
this way you can come up with the value that works for you.
Best regards,
Victoria
Thank you so much Victoria.
I downloaded and activated it but it seems limited to me.
I can’t increase the font size…. can you help me?
by by
Hey Victoria,
I didn’t understand the first question. I don’t know the tab section and din’t use it.
The problem with the footer is resolved. Thank you!
What’s with my question for the font size of the rider head you can find under the menu point „BÜRGERSERVICE – Satzungen”?
Greetings, Uwe
Hi AlexBellaTropea,
Please add this CSS code in Quick CSS:
#top #socket .social_bookmarks .av-social-link-Tripadvisor {
width: 110px;
}
#top #socket .social_bookmarks li {
font-size: 14px;
}
Best regards,
Nikko
The value of the custom font size is also not stored when I reopen the editor afterwards. It is set back to default
When I select a custom Date Font Size 14px for desktop in the Timeline avia editor it is rendered incorrectly:
element.style {
font-size: 14,px;
}
Notice the additional , in between 14 and px. Without the comma it would be correct.
(I’m in a timezone with a comma as decimal separator)
Thank you for your quick response Rikard. The font size worked, which is great, but there is still no space between the columns. I have tried changing it to different percentages and still no luck. Anything else that I could do to put the space between columns?
Hey Ivana,
Please try the following in Quick CSS under Enfold->General Styling:
#av-sc-portfolio-1 .grid-entry {
width: 24%;
}
#av-sc-portfolio-1 .grid-entry h3.grid-entry-title {
font-size: 22px;
}
Best regards,
Rikard
Hi,
I added this to Quick CSS and it’s now applying to your site:
@media only screen and (max-width: 767px) {
#top .phone-info span,
#top .phone-info span a {
font-size: 12px !important;
}
}
Best regards,
Rikard
Hi AlexBellaTropea,
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) {
#top .phone-info span,
#top .phone-info span a {
font-size: 12px;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi there,
I’ve been struggling with this for quite some time now. I would like to change the font family and size of the product titles and the filter titles.
https://katjajensenphotography.com/database/
Do anyone have a clue, how to go about that?
Hi Victoria
It does work for changing the font size…
But I don’t know how to add social share buttons.
I saw the link you sent to me..but I don’t know how to do it, I add these codes on my website, it shows me “Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.” I don’t know these,
So, I think I need your help.
Thanks
Eric
Sorry, I posted the same link twice.
Homepage: https://bpatest.com/lsg/
Bog Page: https://bpatest.com/lsg/blog/
The font size is actually not the issue, but the Homepage has the font justified, unlike the blog page.
See screenshot here https://bpatest.com/lsg/wp-content/uploads/2020/03/example.png
Thanks!