Hi Rikard,
I have found another way that looks very promising
with Pain Text and text-Mode (not visual)
look:
<span style=”margin-left: 0px;”>Adresse:</span><span style=”margin-left: 18px;”>Alexander</span>
<span style=”margin-left: 80px;”>Street</span>
<span style=”margin-left: 80px;”>City</span>
Telefon:<span style=”margin-left: 20px;”>+49 (0)999999</span>
Mail:<span style=”margin-left: 41px;”> (Email address hidden if logged out) </span>
it works
what about the font size above the menu in the header, here where the mail address and phone number is displayed.
Take a look at my website… top right !!!
Hey highland12,
You can’t set that individually in the theme options unfortunately, but if you add a class like this to Quick CSS:
.paragraph-18 {
font-size: 18px;
}
Then you can add that class to your paragraph, like so:
<p class="paragraph-18">This text is 18 pixels</p>
Best regards,
Rikard
Hi,
Thank you for the update.
You can try this css code to adjust the font size of the sort buttons.
#top .sort_by_cat a .inner_sort_button span {
font-size: 100px;
}
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
Ismael
Hi,
Social icons; please try this in Quick CSS:
#header .social_bookmarks a:before {
font-size: 18px;
}
Overlapping; I’m not sure I understand your intentions, could you try to explain what you are looking to achieve a bit further please? If you have a screenshot highlighting what you would like to change, then please share that with us.
Settings; let us know which specific settings are not working, and we’ll look into it further.
Best regards,
Rikard
Hi there, I purchased a new license just to get support on existing site, so I hope you can help.
1) I use advanced layout fields for woocommerce, but for some reason, the code added to css (provided by plugin developer) does not work on destkop, but does only on mobile. Plugin developer claims theme or something conflict, kindly help me to make the changes effective.
2) On my contact form, I guess I made some mistake, since when I receive email, the field order ID does not show up. Please let me know how to fix that.
3) Subheading of special heading does not seem to not listen to the fonto and size styling. but it stays default. Specifically, I notice there is less opacity and I can’t increase opacity. Why so?
Hi Mike,
i’m facing a strange issue here:
When i change something in the code (font-size for example) and i save the page and click on preview. i find some messed upo code like this
.marquee > .track > .content { margin: 0; padding: 0; color: #fff; font-size: 25px; font-family: ‘press-start-2p’; } .marquee { position: relative; width: 100vw; max-width: 100%; height: 200px; overflow-x: hidden; } .track { position: absolute; white-space: nowrap; will-change: transform; animation: marquee 32s linear infinite; } @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
Then i need to close the browser chrome and start new. Then it seems to be working. Is this normal?
kind regards Jak
-
This reply was modified 4 years ago by
Jak73.
Hi,
To make it full width try this in your Quick CSS:
#top.page-id-600 .avia_codeblock_section.avia_code_block_0 {
width: 100vw !important;
position: relative !important;
left: calc(-50vw + 50%) !important;
}
to add another going the other direction add this to a new code block element
<style>
.marquee-two > .track-two > .content-two {
margin: 0;
padding: 0;
color: #fff;
font-size: 25px;
font-family: 'press-start-2p';
}
.marquee-two {
position: relative;
width: 100vw;
max-width: 100%;
height: 200px;
overflow-x: hidden;
}
.track-two {
position: absolute;
white-space: nowrap;
will-change: transform;
animation: marquee-two 32s linear infinite;
}
@keyframes marquee-two {
from { transform: translateX(-50%); }
to { transform: translateX(0); }
}
</style>
<div class="marquee-two">
<div class="track-two">
<div class="content-two"> All of Joakims NFTs are one of a kind (1/1) artworks. Each artwork will be available either on Opensea or Rarible only!</div>
</div>
</div>
and if you want the second code block full width add this Quick CSS for it
#top.page-id-600 .avia_codeblock_section.avia_code_block_1 {
width: 100vw !important;
position: relative !important;
left: calc(-50vw + 50%) !important;
}
Best regards,
Mike
Hi,
The code you are seeing needs to be inside a style tag, so try this in your code block element
<style>
.marquee > .track > .content {
margin: 0;
padding: 0;
color: #fff;
font-size: 25px;
font-family: 'press-start-2p';
}
.marquee {
position: relative;
width: 100vw;
max-width: 100%;
height: 200px;
overflow-x: hidden;
}
.track {
position: absolute;
white-space: nowrap;
will-change: transform;
animation: marquee 32s linear infinite;
}
@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
</style>
<div class="marquee">
<div class="track">
<div class="content"> All of Joakims NFTs are one of a kind (1/1) artworks. Each artwork will be available either on Opensea or Rarible only!</div>
</div>
</div>
Best regards,
Mike
next tip – if you know the right selector for those headings you can be very specific on changing those font-sizes by setting media query for it.
f.e.:
@media only screen and (min-width:768px) {
h1.av-special-heading-tag {
font-size: clamp(24px, 3.5vw, 50px);
}
}
@media only screen and (max-width:767px) {
h1.av-special-heading-tag {
font-size: clamp(22px, 6vw, 50px);
}
}
with a decision to make it via flexible font-size definition etc. pp
This reply has been marked as private.
Hey Jak73,
Try this in a code block element
<marquee>This text will scroll from right to left</marquee>
you will want to add some style for the font size and color, etc
Best regards,
Mike
if you have a link to your site in private content area – i do not see – because i’m participant too.
But as a container like others you can set in the css code above a background-color.
if you only want to have that icon placed in your content – you don’t need the font-icon. You can place like this your svg itself. Then you can even have multicolor icons in front.
_________
See here an example test page ( with a custom font of mine – you had to change it to your font-family) : https://webers-testseite.de/#footer
and code a bit different:
#footer .widgettitle {
padding-left: 40px;
position: relative;
}
#footer .widgettitle::before {
position: absolute !important;
width: 30px !important;
height: 30px !important;
top: -2px;
left: 0;
content: "\e844";
font-family: "fontellico";
font-weight: 400 !important;
font-size: 1.2em;
line-height: 35px;
background-color: #f5c61b;
color: blue;
text-align: center;
}
Hey terishka1,
Please try the following in Quick CSS under Enfold->General Styling:
.sort_width_container .inner_sort_button span {
font-size: 18px;
color: red;
}
.sort_width_container .inner_sort_button span:hover {
color: blue;
}
div.sort_by_cat {
background: #262626;
}
Best regards,
Rikard
Hi Rikard,
Thank you very much for the code. I use the following code taken from your tab sections doc. to change the font size of the text and tab colours.
/* CSS - Tab font styles */
.av-inner-tab-title {
font-size: 20px;
font-weight: 900;
letter-spacing: .5em;
line-height: 24px;
}
/* CSS - Tab font style on hover */
.av-inner-tab-title:hover {
color: black;
}
/* CSS - Active tab font style */
.av-active-tab-title {
background:gold;
}
There were no changes after inserting the coding. Please advise if I missing some coding?
Thanks,
Nik
you can insert it via quick css and to a pseudocontainer f.e:
#footer .widgettitle::before {
content: "\e800";
font-family: "dentalimpex_icons";
color: #D02514;
position: relative !important;
top: 3px;
margin-right: 5px;
font-weight: 400 !important;
font-size: 1.2em;
}
you have to adjust the code to your needs – here only footer widgets are set
Hello,
I´ve created a custom fontello font with my personal icon – which works great in text blocks and so on. But now I wonder if there is a chance to get my custom icon into the wigdet title?
I created a shortcode for the icon within a post: [av_font_icon icon='ue800' font='dentalimpex_icons' style='' caption='' size='40px' position='left' color='#D02514' link='' linktarget='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' animation='' id='' custom_class='' template_class='' av_uid='av-3oqd' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
How can I add this to the widget title? I made some custom changes to the widget title appearance. When I use the custom-html widget and try to use h3 to immitate the widget title I don`t get the appearance I set up in the advanced styling.
You can see the widget title styling in the link. If I could get my icon just infront of the title it would be perfect.
Thank you very much!
Hey terishka1,
Please try adding this CSS code in Enfold > General Styling > Quick CSS:
.grid-content,
.grid-content .grid-entry-title {
background-color: #262626 !important;
}
.grid-content .avia-arrow {
display: none;
}
.grid-content .grid-entry-title {
text-align: center;
font-size: 22px;
color: white;
}
Best regards,
Nikko
This reply has been marked as private.
Hey onedesignprint,
Thank you for the inquiry.
The base css is overriding the advanced styling. We will forward the issue to our channel. For the meantime, please add this css code.
.html_header_sidebar #header .av-main-nav > li > a .avia-menu-text {
font-size: inherit;
}
Best regards,
Ismael
Hey There,
I would like to change the design of Blogposts. (see link in privat content)
In this case I use elegant blog but I would like to set the Headlines to the left.
In the googledeveloper tool I found some code (when I changed text-align: from center to left, (see below) it worked out, but I don’t know how to insert it in quick css.
.html_elegant-blog #top .post-entry .post-title,
.html_elegant-blog .avia-content-slider .slide-entry-title{
text-align: left;
font-size: 30px;
text-transform: uppercase;
padding:0px 0 15px;
letter-spacing: 2px;
line-height: 1.3em;
margin-bottom:10px;
}
.html_elegant-blog #top .post-entry .blog-categories{
text-align: left;
display: block;
font-weight: bold;
position: relative;
}
I also found code for changing the size of the read more button but I do not know how to write it in quick css: (I changed width and hight in the google developer tool)
)
.html_elegant-blog .more-link {
display: block;
text-align: center;
margin: 20px auto 20px auto;
clear: both;
width: 100px;
height: 40px;
border: none;
border-style: solid;
border-width: 1px;
padding: 10px 0;
border-radius: 2px;
}
Would be very nice of you to help me!
br josephine
Hello,
I would like to change the background colour and font size and colour. Please refer to private content for images. I tried your custom tab code provided at https://kriesi.at/documentation/enfold/tab-sections/ . They don’t work.
Any suggestions is appreciated.
Thank you,
Nik
Hi,
Thanks for the update.
The font size of the h2 element is already set to 22px when we checked. The footer looks fine as well. We provided screenshots in the private field. Please make sure to purge the cache on your end or try to check it on a different browser.
Best regards,
Ismael
Hi,
You can use following code to set H2 font size to 22px
#top #wrap_all .all_colors h2 {
font-size: 22px;
}
I still see it in correct size but if you do not see it after adding the code, you could try adding !important rule as following
#top #wrap_all .all_colors h2 {
font-size: 22px !important;
}
Best regards,
Yigit
Hey,
Could you please try adding !important rule and check if that helps?
@media only screen and (max-width: 990px) {
#top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 { font-size: 26px !important; }
}
@media only screen and (max-width: 767px) {
#top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 { font-size: 22px !important; }
}
@media only screen and (max-width: 480px) {
#top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 { font-size: 18px !important; }
}
Cheers!
Yigit
Hey andrea,
Thank you for the inquiry.
You can define a minimum font size for the text layer in one of its style settings. Please edit the text layer, go to the Styles panel and look for the Min. Font Size and the Min. Mobile Font Size fields. You can also toggle the visibility of the layers on certain screen sizes.
Best regards,
Ismael
Hi,
1- Please use following code instead
@media only screen and (max-width: 990px) {
#top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 { font-size: 26px; }
}
@media only screen and (max-width: 767px) {
#top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 { font-size: 22px; }
}
@media only screen and (max-width: 480px) {
#top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 { font-size: 18px; }
}
2- Please click on the icons to set font size for different screen sizes – https://imgur.com/a/mZoQ9Z4
Regards,
Yigit
1- See private content. H1 is set to 80px on Advance setting. I would like to set it also for other screen sizes.
2- I’ve already set the Font size there but it only allows to set the fullwidth size (can’t find responsiveness setting)
Hi,
1- Could you please post a link of your page so we can make sure we are providing accurate CSS code?
2- You can edit your element and click on the slide and go to Styling > Font Sizes to adjust responsive font size – https://imgur.com/a/ojH7j1N
Best regards,
Yigit
Hey,
Thanks for contacting us!
You can adjust responsive font sizes for Fullwidth Easy Slider in Enfold theme options > General Styling > Typography.
Typography settings do not override post titles so please use following custom CSS code
#top .fullsize .template-blog .post-title { font-size: 30px; }
@media only screen and (max-width: 990px) {
#top .fullsize .template-blog .post-title { font-size: 26px; }
}
@media only screen and (max-width: 767px) {
#top .fullsize .template-blog .post-title { font-size: 22px; }
}
@media only screen and (max-width: 480px) {
#top .fullsize .template-blog .post-title { font-size: 18px; }
}
Best regards,
Yigit
Hi,
i would like to change:
font-size, font-family and center the text in my team members (for the team members text) page.
Hw can i do that?
Kind regards Jak
-
This topic was modified 4 years ago by
Jak73.