Hey MikeTandySwag,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
#top #wrap_all .all_colors h1 {
font-size: 50px;
}
}
Best regards,
Rikard
Hi,
I need to H1 tag font size to be smaller on mobile.
For example on this page (in the private content) the H1 at the top of the page goes out of the screen.
How can I fix this?
Thanks
Hey Em,
Thanks for contacting us!
You could actually go to Enfold theme options > Header > Extra Elements and insert your text as “small info text”, go to Enfold theme options > Header > Header Behaviour and check “Unstick topbar” and then add following code to bottom of Quick CSS field in Enfold theme options > General Styling > Quick CSS
#top .phone-info {
text-align: center;
width: 100%;
font-size: 14px;
}
Then finally go to Enfold theme options > Advanced Styling > edit “Small bar above Main Menu” and set background and set text colors :)
Best regards,
Yigit
Hello,
I use a code to center the product title and product and also othere small changes. All is good excluding the procut price centre on home page. In shop, product category etc is correct. Just the hope page where I use the Proiduct Grid is not working.
You can see it here: https://oldschoolclassic.cz/
My code is here:
#top.woocommerce-page .template-shop ul.products li a { text-align: center; }
.inner_product_header_cell h2 { font-size: 20px !important; text-align: center; }
.single-product .price, #top .price span { color: #ff2929; !important; font-size: 22px !important; text-align: center; }
#top .alternate_color .price, .alternate_color .stock, #top #wrap_all .alternate_color ins, .alternate_color .products .product-category h3 .count, .alternate_color .widget_layered_nav_filters .chosen a:before, .alternate_color .widget_layered_nav .chosen a:before {
color: #ff2929; }
#top .main_color .price, .main_color .stock, #top #wrap_all .main_color ins, .main_color .products .product-category h3 .count, .main_color .widget_layered_nav_filters .chosen a:before, .main_color .widget_layered_nav .chosen a:before {
color: #ff2929; }
Can you help me to solve this, please?
Hi,
Please try this in Quick CSS:
#custom_html-3 a.avia-button {
color: #fff;
background #000;
font-size: 16px;
}
If you need to change the link, then please edit this part of the code I sent you:
https://your.site/page/
Best regards,
Rikard
Hi,
Thank you for the update.
1.) We added the following css code to remove the menu indicator or the arrows.
.mega-indicator {
display: none !important;
}
2.) And this one to remove the lines in the mobile menu.
.av_minimal_header .main_menu #mega-menu-wrap-avia #mega-menu-avia li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item a {
border: 0;
}
3.) This is not possible out of the box but you should be able to use css to change the style of the mobile menu icon. Example:
#mega-menu-wrap-avia .mega-menu-toggle .mega-toggle-block-3 .mega-toggle-animated-box::before {
content: "\f411" !important;
font-size: 30px;
top: -20px;
position: relative;
}
.mega-toggle-animated-inner {
display: none !important;
}
Best regards,
Ismael
Hello Rikard,
Thank you. I put the button successfully, but I could not edit the button like the color of it and the size of the fonts. Also, I want to make the button a link to another page and clickable. Can you please tell me how to do it?
Please reply at:
(Email address hidden if logged out)
Regards,
Roland
thanks yigit , that worked fine.
by the way, the content slider is displaying very big on a mobile, way to big.
now i can make a mobile version and a desktop version ( and so make two versions of the same thing in fact ):
.mobile {display:none !important;}
.desktop {display:block;}
@media only screen and (max-width: 479px) {
.mobile {display: block !important;}
.desktop {display: none !important;}
}
but is it also possible to tell the system to display the whole thing just small on a mobile?
the text itself i can make smaller by
@media only screen and (max-width:767px) {
#top .groot .entry-title {
font-size: 32px;
}
#top .groot .entry-title {
font-size: 32px;
}
}
but its more about the background picture that is way too big…
best regards, jelle
-
This reply was modified 4 years, 9 months ago by
yampieters.
THANKS Mike,
This is perfect.
If others need the same – this is the final CSS used for the Team-member element.
.team-member-name {
text-transform: none !important;
font-weight: "bold" !important;
font-size: 17px;
padding: 0 15px 10px 10px;
}
.team-member-description {
text-transform: none;
padding: 0 15px 10px 10px;
}
.custom-class {
box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
}
Hi,
Glad to hear this helped, as for the text block under “Page Overview” I see these links are H5 and for hover I see a slight conflict which I believe is due to the Advanced Styling for the H5 element which defines a new font size and the color is blank, which tells the theme to use the inherit color, which should also be fine, but the element doesn’t have the option to define a hover color so inherit is used which is the problem.
So we will need to add a css rule either for the font size or for the color, I recommend leaving the Advanced Styling setting as is and adding this css to your Quick CSS:
#top #wrap_all .avia_textblock > h5 > a:hover {
color: #fb6971;
}
After applying the css, please clear your browser cache and check.
Please let us know if you find any other oddities.
Best regards,
Mike
Hi,
Thanks for the update. I activated the child theme, but I can’t see any difference in either the header or the font sizes on your front page, could you check and verify that on your end as well please?
The image background in the Color Section looks good on my end, could you let us know what you would like to change please? If you have a screenshot highlighting your intentions, then that would help.
Best regards,
Rikard
Hey Patrick,
Thanks for contacting us!
1- You add following code to bottom of Functions.php file of your child theme (https://kriesi.at/documentation/enfold/child-theme/)
function av_get_site_desc() {
$site_description = get_bloginfo( 'description' );
return $site_description;
}
add_shortcode( 'site_desc', 'av_get_site_desc' );
and use [site_desc] shortcode to display it wherever you want. To display it in header area, you can refer to this post – https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area and add a widget area to your header.
If that does not help, please post a screenshot showing the changes you would like to make. You can upload your screenshots on imgur.com and post the links here :)
2- Please add following code to Quick CSS field in Enfold theme options > General Styling tab
#avia2-menu a {
font-size: 17px;
}
#top .social_bookmarks li a {
font-size: 20px;
}
Best regards,
Yigit
Hi Rikard, does not work, the color is always the same (gray not #1c3041), also instance created by you is the same as mine.
If the “Apply only to mouse hover state” flag changes only the font size (which it shouldn’t do) not color!!
ps: token is always active. Thanks
Hi Anja,
Please try this CSS as well to set a background for the read more button:
.home #avia_feature_image_slider_1 a.avia-slideshow-button {
background-color: blue;
}
You can add this CSS instead of the previous block I sent, if you want to change the font size of the header:
.home #avia_feature_image_slider_1 h2.avia-caption-title {
background: blue;
padding: 10px;
font-size: 28px;
}
All elements on your site can be seen if you select to inspect them in your browser. There is no intellectual property rights here, you can freely target them using your own CSS.
Best regards,
Rikard
Hi jelle,
We apologize for the delayed response.
1. Yes, if changes that you want aren’t in the backend options.
2. Please try adding this in Quick CSS:
#top .groot .entry-title {
background-color: rgba(102,102,102,0.2);
border-radius: 10px;
padding: 10px 20px;
display: inline-block;
}
3. The transitions are defined in the js file (enfold > config-templatebuilder > avia-shortcodes > slideshow > slideshow.js, line 42):
transitionSpeed:900,
4. Can you try adding this CSS code:
@media only screen and (max-width:767px) {
#top .groot .entry-title {
font-size: 32px;
}
#top .groot .entry-title {
font-size: 32px;
}
}
Best regards,
Nikko
This reply has been marked as private.
Hi Rikard, I had already tried but it doesn’t work, it just changes font size. If you want to try it yourself, there is token in private data.
thank you

Thankyou Rikard, the code works, which is great!
So, I went ahead and added the code for 3 more fullwidth sliders. Now I have another problem, which may/may not be related – my CSS updates won’t save. This message is displayed: “Saving didn’t work. Please reload the page and try again.”
To try and fix this, I have done the following:
– tried to remove my last CSS update
– backed up my CSS then deleted all CSS
– reloaded the page
– logged off then logged on again
Nothing helps! Could you please help me. My CSS is included below:
/*change caption position on Home fullwidth slider */
.slideshow_align_caption {
top: -90px; left: 40;
}
/*change caption position on About fullwidth slider to top*/
#top .caption_bottom .slideshow_caption {
bottom: auto;
top: 30px; left: 40;
}
/*change caption position on Board fullwidth slider*/
#board .slideshow_align_caption {
left: 340px;
}
/*change caption position on Testimonials fullwidth slider*/
#testimonials .slideshow_align_caption {
top: -150px;
}
/*change caption position on Submit fullwidth slider*/
#submit .slideshow_align_caption {
top: 40px;
}
/*set constant height for all fullwidth slider images */
ul.avia-slideshow-inner {
max-height: 450px;
}
/*set constant height for all mobile fullwidth slider images */
@media only screen and (max-width: 768px) {
.avia-slideshow-inner, .avia-slideshow-inner img {
height: 420px !important;
margin-bottom: -60px;
}
/*adjust width of mobile fullwidth slider images */
.av_slideshow_full li img {
width: 230% !important;
max-width: 230% !important;
margin-left: -25%;
}}
/*change heading case from upper to upper/lower */
h1, h2 {
text-transform: none !important;
}
/*change size of icon box title*/
.iconbox .iconbox_content .iconbox_content_title {
font-size: 20px;
text-transform: none;
}
/*change subtitle color in testimonials*/
.avia-testimonial-name {
color: #fa6f3c !important;
}
/* reduce Team member photo size */
.team-img-container img {width: 50%!important;
}
/* reduce Team member name size */
.avia-team-member .team-member-name {
font-size: 16px !important;
}
/* reduce Team member Description size*/
.avia-team-member .team-member-description {
font-size: 14px !important;
}
/* Job Title */
.avia-team-member .team-member-job-title {
color: #fa6f3c !important;
}
/* align Team member photo and name */
.team-img-container img { float: left; }
/*fill screen with web page*/
.responsive .container {
max-width: 100%;
}
Hi,
Thank you for your patience and for the links, on your site I see the images are not the same size, one is landscape, one is normal 467px x 467px (middle) and the first one is 1200px x 832px, so I recommend trying to use the same image size for all of them. Then I notice that your “title” is very long due to your language, since I doubt you want to hyphenate it I recommend using a smaller font size.
So as an example I created 6 simple team member elements with only an image and a little dummy text:

then I placed 3 in a grid row element as I described in the thread you linked to and 3 in 1/3 columns like you have on your site:

then I added this css for the box-shadow and text padding you were asking about:
.avia-team-member {
box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
}
.team-member-description {
padding: 0 15px 10px 15px;
}
and this was the result:

This seems like the result you were looking for, I like the grid row layout as it seems more full width, but the columns also have a nice boxed look. Hope this helps.
Best regards,
Mike
Hey John,
Thank you for your patience, and the link to your page, since you increased the font size you will also need to change this css to re-center the text:
.av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
width: 130px !important;
}
After applying the css, please clear your browser cache and check.
The default is 90px & I just experimented until it looked good, feel free to adjust.
This also helps with your mobile view, but please note that the element is not meant to show all tabs at mobile, it moves along as the tabs are clicked.
Best regards,
Mike
Hello Rikard
I added below code in quick css . Now it’s showing properly.
#header .mega_menu_title {
font-size: 14.5px !important;
}
#top #header .mega_menu_title a { font-size: 14.5px; }
I’m getting strange issues with the website. Please check the below links , it’s all redirecting to homepage . Suddenly it stopped working . I created contact-us page first , it stopped working so created another contact page with contact & that also stopped working .
Finally I have created a new contact page which u can find in our website .
I need to see why below links stopped working. I even updated permalinks . checked all redirection , but no luck .
could you please try to create below pages again ? It will redirect to homepage .
-
This reply was modified 4 years, 9 months ago by
IDV.
Hey,
Thanks for contacting us!
Please edit your Table element and give it custom ID in Advanced > Developer Settings tab (“custom-table” in example below) and then add following code to bottom of Quick CSS field
#custom-table .avia-heading-row { background-color: #719430; font-size:19px; font-weight: bold; color: white; border-bottom: none;}
#custom-table li { color: black; border: 1px solid black; }
Best regards,
Yigit
Hi,
I have decided to go with a tab section on the home page that is split between two sections for ‘Solutions’ and ‘Services’.
I have figured out through the forum on how to increase the font headings which has worked well.
/*----------------------------------------
// CSS - Tab Section Font sizing
//--------------------------------------*/
.av-inner-tab-title {
font-size: 19px;
}
The issue I have now is that in each of the tab sections the headings are not center aligned. Is there a css code or a setting that can make this so?
I also notice that when viewing in mobile, say for ‘Solutions’, that the ‘security alarm monitoring’ is having its ‘g’ cut-off. It would be nice to ensure that the text here is always within the frame. I have captured an image in pc so you can view.
Thanks
John
Hi there,
I’m trying to get the submenu text to match the main navigation. I’ve tried to piece the CSS together but can’t get it right. Here’s one of my attempts, so you can see the styling I’m trying to incorporate:
#top #header .av-main-nav > a .avia-menu-text {
font-family: hurme-geometric-sans-no.font-family;
font-weight: light;
font-size: 80%;
letter-spacing: 0.2em;
}
Thanks team
hello, ive managed so by using the content slider:
the code i use now is
.groot
{color:#a42c6a;
font-size:48px;
padding:20px;
text-shadow: 2px 2px #e1e1e1;
font-family: Century Gothic;
}
but im having some questions left
1. is the quick css the only location i can manage the layout of the sliding text?
2. if so, how can i give this text transparant background , lets say #666666, with a transparancy of 0.2 , padding 10px, roundedcorners 10%,?
3. where can i adjust the transaction speed?
4. on a mobile the whole thing looks a bit strange…too big…of course i could hide it, but what about seeing the same stuff, but than much smaller, fit for a mobile?
is this possible?
best regards, jelle
Hi Yigit,
Thanks so much for replying.
Two things I’m trying to achieve here
1) Our custom icons to be positioned on the right side of the menu header as per below screen shot. I’ve uploaded the icons as an icon pack
https://dev.powerof4.com.au/wp-content/uploads/2021/06/Custom-Icons-On-Main-Menu.jpg
Icons are located here (using a custom import font pack called PO4)
2) When the screen is resized (for tablet and mobile) we would like the main logo icon to move to the centre and the burger icon to appear on the far left as per screen shot below
https://dev.powerof4.com.au/wp-content/uploads/2021/06/Burger-Menu-On-Left-Side.jpg
Thanking you in advance for your help here :)
Andrew
Hi Tobias777G,
Please try the following in Quick CSS under Enfold->General Styling:
#footer .widget p {
line-height: 16px;
}
nav.sub_menu_socket li a {
font-size: 16px;
}
Best regards,
Rikard
Hi,
Thanks for the update. Please remove the dot from the CSS class you added, it won’t work if there is a dot in the class.
Copyright line; the default backlink won’t be added, so you can remove the shortcode, and add your custom code to the slider. If you can’t add it into the slider, then you might have to add it into a code block, and position it using CSS.
Menu on phones; please try this in Quick CSS:
@media only screen and (max-width: 767px) {
div.footermenufont li {
padding: 0px 10px !important;
}
div.footermenufont li a {
font-size: 12px !important;
}
}
Best regards,
Rikard
Hey laempe,
The custom class is added to the parent div, so you would have to target the element using CSS like this:
.headline_style_home h1 {
font-size: 30px !important;
}
Please try that out.
Best regards,
Rikard