This reply has been marked as private.
Thanks Vinay. This worked for changing the size, font family and color of the placeholder text.
However, the submit button text has still not changed to quick sand. I tried adding the same code for the submit button i.e.,
#top input[type=”text”],
#top input[type=”input”],
#top input[type=”password”],
#top input[type=”email”]
#top input[type=”submit”] {
padding: 14px 6px;
font-family: “quicksand”,sans-serif;
background: #fff;
border-radius: 0px;
}
But it did not change the font family for the submit button. Could you suggest any additional code?
Thanks
Garima
Hey Cynthia45,
Please add the following CSS
.entry-content p { font-size: 18px !important; }
let us know if it works
Best regards,
Basilis
Hello,
I have my default font size set to 18px and everything looks fine except my blog page where the font is much larger?
How do I fix that?
Hi sparkzilla,
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: 220px;
}
#full_slider_1 .avia-slideshow li img {
width: 140%;
}
.slideshow_inner_caption {
height: 36%;
top: 10%;
}
#top .avia-slideshow-button.avia-color-light {
padding: 3px 6px;
margin-top: 5px;
}
#top #wrap_all .avia-slideshow-button {
font-size: 14px;
line-height: 1.3em;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi,
This is no bug but a technical limitation. The website needs some time to render and to load all resources – depending on the website size (images, scripts, stylesheets, etc.) the loading times may vary and the script execution can be delayed. If you want to avoid these loading effects (font replacements, section adjustments because of javascripts) go to Enfold > Theme Options and tick the “Page Preloading” and “Page Transitions” checkboxes (screenshot: http://www.clipular.com/c/5588487378829312.png?k=y8A7s2w9ArkLn19GPhV8DgUaBjY ). Enfold will then show a preload screen like demonstrated here: https://kriesi.at/themes/enfold-minimal-portfolio/ and will load all resources before the page content fades in.
Best regards,
Dude
Hi,
I have setup a page here:
Using the advice given in the following thread:
https://kriesi.at/support/topic/columns-within-columns/
However the icon list shows up with bullet points:
http://prntscr.com/kkmkwd
Below is the code used to generate the content inside the text block:
<div class="flex_column av_two_third first">Left content goes here</div>
<div class="flex_column av_one_third">[av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='' custom_content_size='' font_color='custom' custom_title='#020202' custom_content='#020000' color='custom' custom_bg='' custom_font='#020202' custom_border='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jkw2fj77' admin_preview_bg='']
[av_iconlist_item title='List Title 1' link='' linktarget='' linkelement='' icon='ue812' font='entypo-fontello' av_uid='av-1kx6be'][/av_iconlist_item]
[av_iconlist_item title='List Title 2' icon='25' content='Enter content here' link='' linktarget='no' linkelement='' av_uid='av-1dn34q'][/av_iconlist_item]
[av_iconlist_item title='List Title 3' icon='64' content='Enter content here' link='' linktarget='no' linkelement='' av_uid='av-16gonu'][/av_iconlist_item]
[av_iconlist_item title='List Title' link='' linktarget='' linkelement='' icon='ue812' font='entypo-fontello' av_uid='av-11lt4y'][/av_iconlist_item]
[av_iconlist_item title='List Title' link='' linktarget='' linkelement='' icon='ue800' font='entypo-fontello' av_uid='av-xm1ze'][/av_iconlist_item]
[av_iconlist_item title='List Title' link='' linktarget='' linkelement='' icon='ue800' font='entypo-fontello' av_uid='av-xm1ze'][/av_iconlist_item]
[av_iconlist_item title='List Title' link='' linktarget='' linkelement='' icon='ue800' font='entypo-fontello' av_uid='av-xm1ze'][/av_iconlist_item]
[av_iconlist_item title='List Title' link='' linktarget='' linkelement='' icon='ue800' font='entypo-fontello' av_uid='av-xm1ze'][/av_iconlist_item]
[av_iconlist_item title='List Title' link='' linktarget='' linkelement='' icon='ue800' font='entypo-fontello' av_uid='av-xm1ze'][/av_iconlist_item]</div>
Any idea on what the issue could be?
Thanks
Hi,
I took a look at your site but didn’t see any widgets, then I noticed above that said you didn’t create it yet.
The widgets are given different IDs when they are created, so it is a little hard to write the correct css for a widget before it is created, and not effect other widgets. But as an example here is how the change the font weight, color, & size with css:
.widget_categories a {
color: red !important;
font-weight: bolder !important;
font-size: 12px !important;
}
Please let us know when you have a activate widget you would like to change, so we can assist.
Best regards,
Mike
This reply has been marked as private.
Hi,
Ok, I made a few more changes, Please clear your browser cache and check.
New final functions.php:
function custom_timeline(){
?>
<script>
jQuery(window).load(function(){
jQuery('.av-milestone h2.av-milestone-date').replaceWith(function () {
return jQuery('<span/>', {
html: jQuery(this).html()
});
});
});
</script>
<?php
}
add_action('wp_footer', 'custom_timeline');
New final CSS:
.avia-timeline span strong {
color: #858585 !important;
font-size: 25px !important;
}
.av-milestone-odd span strong {
float:right !important;
}
.avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even > span:first-child {
display: none;
}
Best regards,
Mike
Hi,
Thank you for the login, I have changed the function and the css, now it is working correctly without any H tags.
Please clear your browser cache and check.
Here is the final code:
functions.php:
function custom_timeline(){
?>
<script>
jQuery(window).load(function(){
jQuery('.av-milestone-even h2.av-milestone-date:nth-child(even)').replaceWith(function () {
return jQuery('<span/>', {
html: jQuery(this).html()
});
});
jQuery('.av-milestone-odd h2.av-milestone-date:nth-child(odd)').replaceWith(function () {
return jQuery('<span/>', {
html: jQuery(this).html()
});
});
});
</script>
<?php
}
add_action('wp_footer', 'custom_timeline');
CSS:
.avia-timeline span strong {
color: #858585 !important;
font-size: 25px !important;
}
.av-milestone-odd span strong {
float:right !important;
}
Best regards,
Mike
Hi,
I see you are getting this error: Uncaught ReferenceError: jQuery is not defined
Can you please include a admin login in the private content area so we can take a closer look.
I will change the H3 to a span, I assume you still want the text to be the same color and font size though?
Best regards,
Mike
Hi Rikard,
Thanks for helping out.
I did now find that specific option, changed it, but nothing seems to happen. To test that i also set the font size down to 12 but everything still looks the same. I did right-click inspect my page in google chrome and there the rendered fonts for the <p> section still ist Helvetica Neue—Local file(281 glyphs).
I have done several changes on the colors and up the size font, but It does not appears on the site.
Is the any kind of cache of the theme, or something like that?
Thanks
Hello dear friends,
I have found a solution to change a widget title’s font size or weight but can not find how to do it to text below the title.
For example a category widget, how can I make the categories bold or change their fonts?
Thank you
Hey mrqslmk,
Try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_timeline(){
?>
<script>
jQuery(window).load(function(){
jQuery('.av-milestone-even h2.av-milestone-date:nth-child(even)').replaceWith(function () {
return $('<h3/>', {
html: $(this).html()
});
});
jQuery('.av-milestone-odd h2.av-milestone-date:nth-child(odd)').replaceWith(function () {
return $('<h3/>', {
html: $(this).html()
});
});
});
</script>
<?php
}
add_action('wp_footer', 'custom_timeline');
Then add this code in the General Styling > Quick CSS field:
.avia-timeline h3 strong {
color: #858585 !important;
font-size: 25px !important;
}
.av-milestone-odd h3 strong {
float:right !important;
}
Best regards,
Mike
Hey mynoxin,
To change the background color of the button, Please try this code in the General Styling > Quick CSS field:
.avia_cart_buttons.single_button:hover {
background-color: rgba(127, 191, 63, 0.5) !important;
}
#top .avia_cart_buttons .button:hover > span,#top .main_color .avia_cart_buttons .button:hover {
color: #fff !important;
}
To change the sale price:
ins span.woocommerce-Price-amount {
color: red !important;
font-size: 20px !important;
}
span.price del {
color: gray !important;
}
Best regards,
Mike
Hi,
You could try the following to just target product pages:
.product-template-default .woocommerce-Price-amount.amount{
font-size:10px!important;
}
Adjust the size to what you would need.
Best regards,
Jordan Shannon
Hi Rikard,
Thanks this worked.
One more question is how do I change the font type of the text that appears within the contact form. I want to use the quicksand font type for the text in the 2 boxes.
Also, if I want to increase the size of the boxes as in make them bigger what code do I use?
Thanks
Garima
1) Create an enfold heading in a flex-column.
2) if there are columns besides each other it is best to have the equal-height option.
3) i gave to the heading itself a custom class: change-on-hover
4) the hover effect will be active if i’m over the whole column
5) Put in the heading input field:
<span data-hover="About">About </span> <span data-hover="Me">Me</span>
6) The data-hover values do not need to be the same – but it looks better if so
7) do this to quick css:
.change-on-hover .av-special-heading-tag {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
z-index: 111;
width: 100%;
margin: 0 auto !important;
overflow: hidden;
}
.change-on-hover .av-special-heading-tag span {
font-weight: bold;
display: inline-block;
position: relative;
transition: transform 0.3s;
}
.change-on-hover .av-special-heading-tag span:first-child {
color: #fff
}
.change-on-hover .av-special-heading-tag span:nth-child(2) {
color: #ffb400
}
.change-on-hover .av-special-heading-tag span:first-child::before,
.change-on-hover .av-special-heading-tag span:nth-child(2)::before {
position: absolute;
content: attr(data-hover);
}
.change-on-hover .av-special-heading-tag span:first-child::before {
top: 105%
}
.change-on-hover .av-special-heading-tag span:nth-child(2)::before {
bottom: 105%
}
.flex_column:hover .change-on-hover .av-special-heading-tag span:first-child {
transform: translate3d(0, -105%, 0);
color: #ffb400
}
.flex_column:hover .change-on-hover .av-special-heading-tag span:nth-child(2) {
transform: translate3d(0, 105%, 0);
color: #fff
}
PS: it works responsive – but maybe it is important to take a relative font-size as i do in the above example 4.5vw
-
This reply was modified 7 years, 8 months ago by
Guenni007.
Oh dear, that’s a show stopper
Advanced layout editor ( Layout Builder ) is the only way I have discovered to show more text of post on the screen.reduced the size from default 12pt and look good. I will revert back to basic editor, accept that face not much will be presented on a screen.
Objective – Post shown in full in blog with out “read more” . Reduced font size that looks good
.. Many thanks for the reply
JB
Hi,
To change the font color of the button with the boarder, try this:
#top .avia-button.avia-color-dark {
color: #ec0928 !important
}
As for vertically centering the text on the buttons site wide, we will need to make them more uniform, on the one page there are 3 different buttons, with 3 different heights.
Please try this css:
.avia-button.avia-size-x-large,.avia-button.avia-button-fullwidth,.avia-button.avia-size-large {
padding-top: 12px !important;
}
.avia-button-wrap.avia-button-center,.avia-button-wrap.avia-button-left {
height: 45px !important;
max-height: 45px !important;
}
Best regards,
Mike
Hey davidperl,
Thank you for using Enfold.
I don’t see any style issues with the rotator but you can use this css code to adjust its font size.
#top .av-rotator-container-inner {
line-height: 1.2em;
font-size: 60px;
}
Default font-size value is 80px.
Best regards,
Ismael
Hi,
Thanks for the feedback, though I can see the code applying on my end. The font is 15 pixels on phone sizes. Maybe you want it to apply up to tablet size as well? If so you can try to adjust the media query pixel value to 767 instead.
Best regards,
Rikard
Hi,
1. For testing purpose, we need to disable CSS and JS merging from Enfold > Performance and remove the previous code from custom.css.
2. Enable custom CSS class name support for Layout Builder elements from Enfold > Layout Builder.
3. Assign a custom class “custom-slider” to the homepage slider.
4. Since the mobile device has less space we will hide the paragraph text and make the headings 40% width of the slider and font size relative to 3.5% of the viewport width.
by adding the below CSS in Quick CSS:
/* Slider caption width */
@media only screen and (max-width: 480px) {
#top .custom-slider .slideshow_align_caption h2 {
font-size:3.5vw!important;
line-height: 20px;
max-width:40vw;
}
#top .custom-slider .slideshow_align_caption p {
display:none;
}}
Best regards,
Vinay
This reply has been marked as private.
font sizes for smaller devices seems to work but main font on headline rotator for fullsize displays does not seem to change and is clipping top line off
Hey annesite,
Add this to quick css:
.single-post h1.post-title.entry-title{
font-family: Open Sans;
font-size:26px;
}
Best regards,
Jordan Shannon
Hi,
Add this to quick css and adjust if you need:
.avia-testimonial-content{
font-size:10px!important;
}
Best regards,
Jordan Shannon
Hi Alwin,
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 in sidebar to turn to burger on iPad 768px */
@media only screen and (max-width: 990px) {
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1}
.responsive #top .av_header_transparency .logo img.alternate{display:none;}
.responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1; min-height:0;}
.responsive #top #main {padding-top:0 !important; margin:0;}
.responsive #top #main .container_wrap:first-child{ border-top:none; }
.responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; }
.responsive .phone-info{float:none; width:100%; clear:both; text-align: center;}
.responsive .phone-info span{margin:0;padding:0; border:none;}
.responsive.html_header_top #header_main .social_bookmarks ,
.responsive.html_top_nav_header #top .social_bookmarks { width:auto; margin-top:-16px; }
.responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
.responsive .logo a{display:table-cell; vertical-align: middle;}
.responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block; max-height: 80px;}
.responsive #header_main .container{height:auto !important; }
.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
.responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
.responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
.responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
.responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width: 1px;}
.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
.responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;}
.responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;}
.responsive #header .social_bookmarks li{float:none; display: inline-block;}
.responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
.responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
.responsive .logo img{margin:0;}
.responsive.html_header_sidebar #top #header .social_bookmarks{display:none;}
.responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;}
.responsive.html_header_transparency #top .avia-builder-el-0 .container, .responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0;}
.responsive #top .av_phone_active_right .phone-info.with_nav span{border:none;}
.responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a,
.responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a,
.responsive #top .av_header_transparency #header_main_alternate,
.responsive .av_header_transparency #header_main .social_bookmarks li a,
.responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,
.responsive #top .av_header_transparency #header_meta,
.responsive #top .av_header_transparency #header_meta li,
.responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;}
.responsive.html_top_nav_header .av-logo-container{height:auto;}
.responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style: solid; border-bottom-width: 1px;}
/*new mobile*/
.responsive .av-burger-menu-main{display: block;}
.responsive #top #wrap_all .main_menu{top:0; height:80px; left:auto; right:0; display: block; position: absolute;}
.responsive .main_menu ul:first-child > li a { height: 80px; line-height: 80px;}
.responsive #top .av-main-nav .menu-item{display:none;}
.responsive #top .av-main-nav .menu-item-avia-special{display:block;}
.responsive #top #wrap_all .menu-item-search-dropdown > a { font-size: 24px; }
.responsive #header_main_alternate{display:none;}
.responsive #top #header .social_bookmarks{display:none;}
.responsive #top #header .main_menu .social_bookmarks{display:block; position: relative; margin-top: -15px;}
.responsive #top .av-logo-container .avia-menu{height:100%;}
.responsive #top .av-logo-container .avia-menu > li > a{line-height: 80px;}
.responsive #top #main .av-logo-container .main_menu{display:block;}
.responsive #top #main .av-logo-container .social_bookmarks{display:none;}
.responsive #top #main .av-logo-container .main_menu .social_bookmarks{display:block; position: relative;}
.responsive #top #main .av-logo-container .main_menu{display:block;}
.responsive #top #header_main > .container .main_menu .av-main-nav > li > a,
.responsive #top #wrap_all .av-logo-container {height:80px; line-height:80px; }
.responsive #top #wrap_all .av-logo-container {padding:0;}
.responsive #top #header_main > .container .main_menu .av-main-nav > li > a{
min-width: 0; padding:0 0 0 20px; margin:0; border-style: none; border-width: 0;
}
.responsive #top .av_seperator_big_border .avia-menu.av_menu_icon_beside{border-right-style: solid; border-right-width: 1px; padding-right: 25px;}
.responsive #top #header .av-main-nav > li > a, .responsive #top #header .av-main-nav > li > a:hover{
background:transparent;
color: inherit;
}
.responsive.html_top_nav_header .av-logo-container .inner-container{overflow: visible;}
.html_header_sidebar #header .container {
width: 90%;
}
}
If you need further assistance please let us know.
Best regards,
Victoria