-
Search Results
-
Topic: Magazine Entry Font Size
Hey guys
For some reason, I’ve tried to use this custom code:
#top #wrap_all .av-magazine .av-magazine-content-wrap h3.av-magazine-title {
font-size: 14px;
}and I just can’t seem to make the magazine title smaller for the titles on this feed page. please help!
Hi,
I am wanting to change my h1 title default sizes for mobile etc so the whole website changes to those sizes. My site is not live so i cannot send you log in details.
this is the CSS i am trying to use in the quick CSS options.
/*smartphone portrait H1*/
@media only screen and (min-width: 479px)
.h1 { font-size: 30px !important; }
}/*tablet portrait H1*/
@media only screen and (min-width: 480px) and (max-width: 767px)
.h1 { font-size: 40px !important; }
}@media only screen and (min-width: 768px) and (max-width: 989px)
.h1 { font-size: 50px !important; }
}The other issue is for the easy slider i cannot change the caption title font size, and any css i am using does not seem to work for this have looked at previous threads and cannot find a soluition.
Thanks
I am trying to add contacts + login/register buttons to the header widget area with the search box to the right of those. I am unable to figure out how to add the dropdown menu to the buttons and the search box is appearing below the buttons…
I followed the steps here:
https://kriesi.at/documentation/enfold/header/#toggle-id-2
for adding a header widget area with Logo left, Menu below layoutAdded to custom.css
/*--------Widgets----------*/ .responsive #top #header #header_main .inner-container .widget { order: 3; flex-basis: 70%; max-width: 600px; padding: 0; clear: none!important; justify-content: center; align-self: center; align-items: center; z-index: 1; margin-left: auto; } .responsive #top #header #header_main .inner-container .widget>div { width: 100%; line-height: 14px; padding: 0 10px; } .responsive #top #header #header_main .inner-container .widget>div label { visibility: hidden; }Added to functions.php:
add_shortcode('avia_search', 'get_search_form'); add_action( 'ava_before_bottom_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }Shortcode for widget area:
[av_buttonrow alignment='right' button_spacing='5' button_spacing_unit='px' av_uid='av-jjvcu1ht' admin_preview_bg=''] [av_buttonrow_item label='Contacts <i class="fa fa-caret-down"></i>' link='manually,http://' link_target='' size='small' label_display='' icon_select='no' icon='4' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-5gitv0'] [av_buttonrow_item label='Login | Register <i class="fa fa-caret-down"></i>' link='manually,http://' link_target='' size='small' label_display='' icon_select='no' icon='5' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-3y48lo'] [avia_search] [/av_buttonrow]Topic: Edit single post structure
Dear Kriesi team!
i tried to add a code in the code-block which is in the full width section #homedesktoptest but the background animation disapears only in a small section in the middle of the page.
The background shows up in the actual class: #particles-js > canvas
but i added the code to the class #homedesktoptest
Should i use the hole enfold class: #homedesktoptest > div > div.container > div ?<html> <head> <style> /* ---- reset ---- */ #top .homedesktoptest{ margin:0; font:normal 75% Arial, Helvetica, sans-serif; } canvas{ display: block; vertical-align: bottom; } /* ---- particles.js container ---- */ #particles-js{ position:absolute; width: 100%; height: 100%; background-color: #183f60; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } /* ---- stats.js ---- */ .count-particles{ background: #000022; position: absolute; top: 48px; left: 0; width: 80px; color: #13E8E9; font-size: .8em; text-align: left; text-indent: 4px; line-height: 14px; padding-bottom: 2px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; } .js-count-particles{ font-size: 1.1em; } #stats, .count-particles{ -webkit-user-select: none; margin-top: 5px; margin-left: 5px; } #stats{ border-radius: 3px 3px 0 0; overflow: hidden; } .count-particles{ border-radius: 0 0 3px 3px; } </style> </head> <body class="homedesktoptest"> <div id="particles-js"></div> <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> <script> particlesJS("particles-js", {"particles":{"number":{"value":47,"density":{"enable":true,"value_area":552.4033491425909}},"color":{"value":"#ffffff"}, "shape":{"type":"circle","stroke":{"width":0,"color":"#000000"},"polygon":{"nb_sides":5},"image":{"src":"img/github.svg","width":100,"height":100}}, "opacity":{"value":0.5,"random":false,"anim":{"enable":false,"speed":1,"opacity_min":0.1,"sync":false}}, "size":{"value":3,"random":true,"anim":{"enable":false,"speed":40,"size_min":0.1,"sync":false}}, "line_linked":{"enable":true,"distance":150,"color":"#ffffff","opacity":0.4,"width":1}, "move":{"enable":true,"speed":6,"direction":"none","random":false,"straight":false,"out_mode":"out", "bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":1200}}},"interactivity":{"detect_on":"canvas", "events":{"onhover":{"enable":true,"mode":"grab"},"onclick":{"enable":true,"mode":"push"},"resize":true}, "modes":{"grab":{"distance":155.84415584415586,"line_linked":{"opacity":1}},"bubble":{"distance":400,"size":40, "duration":2,"opacity":8,"speed":3},"repulse":{"distance":200,"duration":0.4},"push":{"particles_nb":4}, "remove":{"particles_nb":2}}},"retina_detect":true});var count_particles, stats, update; stats = new Stats; stats.setMode(0); stats.domElement.style.position = 'absolute'; stats.domElement.style.left = '0px'; stats.domElement.style.top = '0px'; document.body.appendChild(stats.domElement); count_particles = document.querySelector('.js-count-particles'); update = function() { stats.begin(); stats.end(); if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) { count_particles.innerText = window.pJSDom[0].pJS.particles.array.length; } requestAnimationFrame(update); }; requestAnimationFrame(update);; </script> </body> </html>Maybe you can help me to find the correct section or tell me what i did wrong on enfold.
Thanks in advance-
Kind regards!Hi
Thanks for a great theme!
I just updated the default font type and size. For body text and heading.
Why can’t I see the new font when I’m logged in?
I have tried clearing the cache.And it works fine for everyone else whos not logged in.
Best regards
/MortenHi
I am trying to Reduce line height for a single text paragraph only on a page – it is the top text paragraph on this page https://thewebcrew.co.uk/about/
I have increase the paragraph line height to 1.6em for all <p> elements on the laptop – but it does not look right on the paragraph text with an increase font size. How can I reduce the line height on all the top sections of my pages but don’t effect the rest of the page?
Cheers…
Kevin.







