-
AuthorSearch Results
-
April 7, 2016 at 8:07 pm #609842
In reply to: Fullwidth submenu custom font size
Hey!
We have added the following code
#top #wrap_all .av-main-nav ul > li > a{ font-size: 20px!important; }Please refresh the browser cache and review the site..
Regards,
VinayApril 7, 2016 at 7:50 pm #609836In reply to: Enfold Showcase
Hi @Chris,
Here you go and this is all there is.
/* Masonry title */
.page-id-nnnn h3.av-masonry-entry-title.entry-title {
font-weight: 700;
font-size: 16x;
text-align: left;
letter-spacing: -.25px !important;
word-spacing: 2px;
text-transform: uppercase;
}/* Title hover */
.page-id-nnnn h3.av-masonry-entry-title.entry-title:hover {
color: #a81010 !important;
}/* This gives white border and grey outline due to padding (three sides) */
.page-id-nnnn .av-masonry-outerimage-container {
padding-left: 8px;
padding-top: 8px;
padding-right: 8px;
border-top: 1px solid #E5E4E2;
border-right: 1px solid #E5E4E2;
border-left: 1px solid #E5E4E2;
}.page-id-nnnn .av-masonry-image-container {
padding: 0px;
border: none;
}/* Masonry excerpt */
.page-id-nnnn .av-masonry-entry-content.entry-content {
text-align: left;
font-style: Normal;
font-weight: 400;
font-size: 12px;
line-height: 100%;
color: #1084C4;
}/* hide little arrow head */
.page-id-nnnn .av-masonry-container .av-inner-masonry-content .avia-arrow {
background-color: transparent;
}/* This is the band below the image (there is a faint grey border) */
.page-id-nnnn .av-inner-masonry-content.site-background {
border-bottom: 1px solid #E5E4E2;
border-right: 1px solid #E5E4E2;
border-left: 1px solid #E5E4E2;
}/* hover for band */
.page-id-nnnn .av-inner-masonry-content.site-background:hover {
background-color: #C8C8C8;
}Enjoy!
Regards,
April 7, 2016 at 5:14 pm #609772In reply to: Icon smaller in Icon List Element
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.os-smallicon .iconlist_title { text-transform: none; font-size: 12px; margin-top: 5px!important; } .os-smallicon .iconlist-char { font-size: 13px!important; }Regards,
Yigit-
This reply was modified 10 years ago by
Yigit.
April 7, 2016 at 5:04 pm #609765Topic: some questions
in forum EnfoldBPC
ParticipantHi, for my site i have things im not getting done:
Site is visible in private content
1) Upperheader with tel and language links, is possible to add some height to this and larger font ?
2) Is it possible to remove search from menu and put it in upper header ?
3) why i need to add some thing in permlink for portfolio ? it would be better if portfolio-item is removed
4) on the homepage there is a lot of white space between the items, is it possible to remove them ?
for example, between “MEER DAN 10 JAAR ERVARING” and “KENNIS, KUNDE, EXPERTISE” is almost 2 cm
5) in this image
i have 2 sizes for the buttons, possible to have them the same ?
6) search like this possible ?
April 7, 2016 at 5:01 pm #609764In reply to: How to change the product page
Hey pachanights!
1 & 2 & 3 & 5 – Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single h1.product_title.entry-title { font-size: 24px; } .single-product-summary { clear: both; } .single p.price { font-family: georgia; } .single-product #av_section_1 .inner_product_header { text-align: center; }4- Please add following code to Functions.php file in Appearance > Editor
function woocommerce_quantity_input() { global $product; $defaults = array( 'input_name' => 'quantity', 'input_value' => '1', 'max_value' => apply_filters( 'woocommerce_quantity_input_max', '', $product ), 'min_value' => apply_filters( 'woocommerce_quantity_input_min', '', $product ), 'step' => apply_filters( 'woocommerce_quantity_input_step', '1', $product ), 'style' => apply_filters( 'woocommerce_quantity_style', 'float:left; margin-right:10px;', $product ) ); if ( ! empty( $defaults['min_value'] ) ) $min = $defaults['min_value']; else $min = 1; if ( ! empty( $defaults['max_value'] ) ) $max = $defaults['max_value']; else $max = 20; if ( ! empty( $defaults['step'] ) ) $step = $defaults['step']; else $step = 1; $options = ''; for ( $count = $min; $count <= $max; $count = $count+$step ) { $options .= '<option value="' . $count . '">' . $count . '</option>'; } echo '<div class="quantity_select" style="' . $defaults['style'] . '"><select name="' . esc_attr( $defaults['input_name'] ) . '" title="' . _x( 'Qty', 'Product quantity input tooltip', 'woocommerce' ) . '" class="qty">' . $options . '</select></div>'; }Regards,
YigitApril 7, 2016 at 2:53 pm #609667In reply to: Customising Top Bar & Title Bar
Hi!
Please use following code instead
.main-title.entry-title { font-size: 20px!important; }Regards,
YigitApril 7, 2016 at 2:47 pm #609661In reply to: Mega Menu Styling
Hi!
You have following inline CSS
#top .main_menu ul.menu li a { color: rgba(255,255,255,1)!important; font-family: Open Sans!important; font-size: 14px!important; font-weight: normal!important; letter-spacing: 2px!important; text-transform: none!important; }that overrides the code i posted. That is probably the reason why advanced styling is not working on your end. Please remove the code and check once again :)
Best regards,
YigitApril 7, 2016 at 1:02 pm #609564In reply to: Fullwidth submenu custom font size
Hi!
Please try using following code
.av-submenu-container a { font-size: 20px; }Regards,
YigitApril 7, 2016 at 12:53 pm #609553Topic: Customize MailChimp Form
in forum Enfoldtarginoman
ParticipantHi, I’m using Enfold and it’s working fine.
Congratulations for it!My doubt is, I’m using the MailChimp signup form from ALB but I don’t know how to customize the button. I want to change it’s color, shape and Font size.
My website is israellaramalho.com.br
April 7, 2016 at 12:35 pm #609537In reply to: Enfold Landing page demo
Hi!
I see this on iPad portrait mode:
So could you already fix it?Use this for big ben animated numbers on iPad landscape:
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { strong.heading.avia-animated-number-title { font-size: 50px !important; }}Regards,
AndyApril 7, 2016 at 8:04 am #609408In reply to: Changing Tabs TITLE font size
Hi Ben,
Please try the following as well:
.toggle_content { font-size: 18px !important; }Thanks,
RikardApril 7, 2016 at 7:33 am #609389In reply to: Customising Top Bar & Title Bar
Hi Vinay,
Thank you for your response. I used the phone info css and that worked perfectly :)
With the second one, I was actually trying to change the size of the font on the title bar, can you send me the css for that?
Thanks!
April 7, 2016 at 7:12 am #609376In reply to: Fullwidth submenu custom font size
Hi Hello!
To increase the secondary menu font size please use the below CSS in Enfold > General Styling > Quick CSS
#header_meta .sub_menu>ul>li>a{ font-size: 20px; }To add a logo in secondary header it takes too much time and customisation we recommend you hire a freelancer.Best regards,
Vinay-
This reply was modified 10 years ago by
Vinay.
April 7, 2016 at 6:52 am #609359In reply to: Customising Top Bar & Title Bar
Hey Emidi!
To increase the phone number font size please add the below code in enfold > general styling > Quick css
.phone-info { font-size:24px!important; }To add padding to the top header please use
Feel free to change the values to suit your site.
#header_meta { padding: 10px 0; }Regards,
Vinay-
This reply was modified 10 years ago by
Vinay.
April 7, 2016 at 3:33 am #609283In reply to: Color Section
Hey!
The site loads a custom script. What is this script for?
<script> jQuery(document).ready(function($){ $('body').prepend('<div id="h5ab-print-content" style="width: 100px; height: 100px; overflow: hidden; position: fixed; left: -9999px;"><h1>color-sections-error</h1>' + "<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3' class='avia-section main_color avia-section-default avia-no-shadow avia-bg-style-scroll container_wrap sidebar_right' style='background-color: #d65799;background-color: #d65799'><div class='container'><div class='template-page content av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n<section class=\"av_textblock_section\"><div class='avia_textblock ' style='font-size:25px'><h2>Title lorem ipsum<\/h2>\n<\/div><\/section>\n<div class='avia-content-slider avia-content-slider-active avia-content-slider3 avia-content-slider-odd '><div class='avia-content-slider-inner'><div class='slide-entry-wrap'><article class='slide-entry flex_column post-entry post-entry-5969 slide-entry-overview slide-loop-1 slide-parity-odd av_one_fifth first real-thumbnail'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/0220-concorrenza\/\" rel=\"tag\">Concorrenza (MiSE)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/\" rel=\"tag\">MEF<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' title='Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE'>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>06\/11\/2015<\/div><div class='slide-entry-excerpt entry-content'>La lettura del bollettino 296 della Banca d\u2019Italia ispira alcune considerazioni di geoconcorrenza, geopolitica e perci\u00f2 di geoeconomia.\r\nL\u2019incipit del paper \u00e8 impostato secondo la pluriennale consolidata certezza che il controllo sulla domanda sia il motore originante tutti i cambiamenti favorevoli e sfavorevoli: \u201c\u2026 <div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t <span>470<\/span>\n\t\t\t\t\t <span>1310<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-11-06 07:17:16<\/span><span class='av-structured-data'>2016-03-10 16:45:57<\/span><span class='av-structured-data'><span>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-5909 slide-entry-overview slide-loop-2 slide-parity-even av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' class='slide-image' title=''><img width=\"246\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"151020 01 sx green\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' title='Libero arbitrio o cos\u00ec fan tutti?'>Libero arbitrio o cos\u00ec fan tutti?<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>21\/10\/2015<\/div><div class='slide-entry-excerpt entry-content'>In Italia il sistema organizzativo democratico \u00e8 troppo centralistico\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg<\/span>\n\t\t\t\t\t <span>1269<\/span>\n\t\t\t\t\t <span>1689<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-10-21 09:38:08<\/span><span class='av-structured-data'>2016-02-23 13:47:15<\/span><span class='av-structured-data'><span>Libero arbitrio o cos\u00ec fan tutti?<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-5648 slide-entry-overview slide-loop-3 slide-parity-odd av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' class='slide-image' title=''><img width=\"185\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"Rotore economico\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/milav\/\" rel=\"tag\">MiLPS<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' title='Stipendi bassi? Serve il rotore del valore aggiunto'>Stipendi bassi? Serve il rotore del valore aggiunto<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>13\/09\/2015<\/div><div class='slide-entry-excerpt entry-content'>Perch\u00e9 in Italia gli stipendi sono bassi? Perch\u00e9 sono come\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg<\/span>\n\t\t\t\t\t <span>9000<\/span>\n\t\t\t\t\t <span>9000<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-09-13 14:03:49<\/span><span class='av-structured-data'>2016-02-23 13:47:42<\/span><span class='av-structured-data'><span>Stipendi bassi? Serve il rotore del valore aggiunto<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-5050 slide-entry-overview slide-loop-4 slide-parity-even av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' class='slide-image' title=''><img width=\"179\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"150715 01\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/0240-fisco\/\" rel=\"tag\">Fisco (MEF)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' title='Mini-econoregole: Il debito a banda larga'>Mini-econoregole: Il debito a banda larga<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/07\/2015<\/div><div class='slide-entry-excerpt entry-content'>Il debito \u00e8 a banda limitata, nella quantit\u00e0 e nel tempo.\r\n\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png<\/span>\n\t\t\t\t\t <span>754<\/span>\n\t\t\t\t\t <span>731<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-07-15 14:21:25<\/span><span class='av-structured-data'>2015-10-12 07:44:19<\/span><span class='av-structured-data'><span>Mini-econoregole: Il debito a banda larga<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-1294 slide-entry-overview slide-loop-5 slide-parity-odd post-entry-last av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' title='Il Paradosso del PIL'>Il Paradosso del PIL<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/04\/2014<\/div><div class='slide-entry-excerpt entry-content'>PIL e resilienza \u2013 Per qualcuno la resilienza \u00e8 un pregio\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/il-paradosso-del-pil\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t <span>470<\/span>\n\t\t\t\t\t <span>1310<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Scior Carera<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Scior Carera<\/span><\/span><span class='av-structured-data'>2014-04-15 16:16:55<\/span><span class='av-structured-data'>2016-03-10 16:46:14<\/span><span class='av-structured-data'><span>Il Paradosso del PIL<\/span><\/span><\/span><\/article><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_3' class='main_color av_default_container_wrap container_wrap sidebar_right'><div class='container'><div class='template-page content av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4' class='avia-section main_color avia-section-default avia-no-shadow avia-bg-style-scroll container_wrap sidebar_right' style='background-color: #4ecac2;background-color: #4ecac2'><div class='container'><div class='template-page content av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n<section class=\"av_textblock_section\"><div class='avia_textblock ' style='font-size:25px'><h2>Title lorem ipsum<\/h2>\n<\/div><\/section>\n<div class='avia-content-slider avia-content-slider-active avia-content-slider4 avia-content-slider-odd '><div class='avia-content-slider-inner'><div class='slide-entry-wrap'><article class='slide-entry flex_column post-entry post-entry-5969 slide-entry-overview slide-loop-1 slide-parity-odd av_one_fifth first real-thumbnail'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/0220-concorrenza\/\" rel=\"tag\">Concorrenza (MiSE)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/\" rel=\"tag\">MEF<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' title='Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE'>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>06\/11\/2015<\/div><div class='slide-entry-excerpt entry-content'>La lettura del bollettino 296 della Banca d\u2019Italia ispira alcune considerazioni di geoconcorrenza, geopolitica e perci\u00f2 di geoeconomia.\r\nL\u2019incipit del paper \u00e8 impostato secondo la pluriennale consolidata certezza che il controllo sulla domanda sia il motore originante tutti i cambiamenti favorevoli e sfavorevoli: \u201c\u2026 <div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t <span>470<\/span>\n\t\t\t\t\t <span>1310<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-11-06 07:17:16<\/span><span class='av-structured-data'>2016-03-10 16:45:57<\/span><span class='av-structured-data'><span>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-5909 slide-entry-overview slide-loop-2 slide-parity-even av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' class='slide-image' title=''><img width=\"246\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"151020 01 sx green\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' title='Libero arbitrio o cos\u00ec fan tutti?'>Libero arbitrio o cos\u00ec fan tutti?<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>21\/10\/2015<\/div><div class='slide-entry-excerpt entry-content'>In Italia il sistema organizzativo democratico \u00e8 troppo centralistico\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg<\/span>\n\t\t\t\t\t <span>1269<\/span>\n\t\t\t\t\t <span>1689<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-10-21 09:38:08<\/span><span class='av-structured-data'>2016-02-23 13:47:15<\/span><span class='av-structured-data'><span>Libero arbitrio o cos\u00ec fan tutti?<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-5648 slide-entry-overview slide-loop-3 slide-parity-odd av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' class='slide-image' title=''><img width=\"185\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"Rotore economico\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/milav\/\" rel=\"tag\">MiLPS<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' title='Stipendi bassi? Serve il rotore del valore aggiunto'>Stipendi bassi? Serve il rotore del valore aggiunto<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>13\/09\/2015<\/div><div class='slide-entry-excerpt entry-content'>Perch\u00e9 in Italia gli stipendi sono bassi? Perch\u00e9 sono come\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg<\/span>\n\t\t\t\t\t <span>9000<\/span>\n\t\t\t\t\t <span>9000<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-09-13 14:03:49<\/span><span class='av-structured-data'>2016-02-23 13:47:42<\/span><span class='av-structured-data'><span>Stipendi bassi? Serve il rotore del valore aggiunto<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-5050 slide-entry-overview slide-loop-4 slide-parity-even av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' class='slide-image' title=''><img width=\"179\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"150715 01\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/0240-fisco\/\" rel=\"tag\">Fisco (MEF)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' title='Mini-econoregole: Il debito a banda larga'>Mini-econoregole: Il debito a banda larga<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/07\/2015<\/div><div class='slide-entry-excerpt entry-content'>Il debito \u00e8 a banda limitata, nella quantit\u00e0 e nel tempo.\r\n\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png<\/span>\n\t\t\t\t\t <span>754<\/span>\n\t\t\t\t\t <span>731<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-07-15 14:21:25<\/span><span class='av-structured-data'>2015-10-12 07:44:19<\/span><span class='av-structured-data'><span>Mini-econoregole: Il debito a banda larga<\/span><\/span><\/span><\/article><article class='slide-entry flex_column post-entry post-entry-1294 slide-entry-overview slide-loop-5 slide-parity-odd post-entry-last av_one_fifth real-thumbnail'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' title='Il Paradosso del PIL'>Il Paradosso del PIL<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/04\/2014<\/div><div class='slide-entry-excerpt entry-content'>PIL e resilienza \u2013 Per qualcuno la resilienza \u00e8 un pregio\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/il-paradosso-del-pil\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\"> →<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t <span>470<\/span>\n\t\t\t\t\t <span>1310<\/span>\n\t\t\t\t <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Scior Carera<\/span>\n\t\t\t\t<span>\n\t\t\t\t <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t <\/span><span class='av-structured-data'><span>Scior Carera<\/span><\/span><span class='av-structured-data'>2014-04-15 16:16:55<\/span><span class='av-structured-data'>2016-03-10 16:46:14<\/span><span class='av-structured-data'><span>Il Paradosso del PIL<\/span><\/span><\/span><\/article><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_4' class='main_color av_default_container_wrap container_wrap sidebar_right'><div class='container'><div class='template-page content av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n" + '</div>'); $('#h5ab-print-content video, #h5ab-print-content audio, #h5ab-print-content script').remove(); }); </script>Cheers!
IsmaelApril 7, 2016 at 2:43 am #609270Topic: Fullwidth submenu custom font size
in forum EnfoldHello
ParticipantI am trying to increase the font size of a full width submenu content element. I added this to my custom CSS, but it does not work.
#top .av-subnav-menu > li > a {
font-size: 48px;
}I am also trying to place the logo on the left side of the full-width submenu, but there is no option to add an image. Is this possible and make the image sticky with the menu?
April 7, 2016 at 12:09 am #609245Topic: How to change the product page
in forum Enfoldpachanights
ParticipantI need some help making changes to the product page. Here’s what I’m trying to achieve:
1. Change the product title to a smaller font size
2. Move the product description box so its permanently below the product image
3. Change the price font on the product page only without changing the font size for all the category listings
4. Change the quantity -/+ button to a drop down menu
5. Centre category product titles for recommended productsCurrent layout
http://www.theunderfloorheatingcompany.co.uk/product/heatmiser-neostat-programmable-thermostat-silver/What I’m trying to achieve
http://www.heatmisershop.co.uk/heatmiser-neostat-programmable-thermostat-platinum-silver/Any help is greatly appreciated!
April 6, 2016 at 10:43 pm #609223In reply to: Changing Tabs TITLE font size
That worked perfectly! Now something is going ton with my text in the actually content section, would you have the code to change that font size as well?
Thanks a million!
Ben
April 6, 2016 at 3:54 pm #609025In reply to: Blog Listing Font Size
Hi michaelspencer!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-magazine .av-magazine-content-wrap .av-magazine-title { font-size: 17px; }Best regards,
YigitApril 6, 2016 at 3:52 pm #609024Topic: Blog Listing Font Size
in forum Enfoldmichaelspencer
ParticipantHello,
Is there any way to increase the font size of the blog post heading when displayed in the blog listing.
See the posts headings NEW WEBSITE, NEW TEAM MEMBERS, etc. under the heading LATEST NEWS in our website.
Thank you.
Best,
Michael
April 6, 2016 at 2:40 pm #608975Hi!
1- Your code should be as following
@media only screen and (max-width: 480px){ h1.av-special-heading-tag { font-size: 23px!important; }}and it should not change font color to black. There might be error in your custom CSS that might cause the issue. If you would like us to look into it, please post temporary admin logins here privately as well
2- Please add following code to Quick CSS in Enfold theme options under General Styling tab@media only screen and (max-width: 768px) { .home #av_section_2 .av-parallax-inner { background-position: center left!important; }}You can alternatively give your color section a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png and change the selector from “.home #av_section_2 .av-parallax-inner ” to “#your-unique-id .av-parallax-inner”
3- You should insert the code into functions.php file of the theme which can be reached in Appearance > Editor. If you would like to add it via FTP, please go to wp-content/themes/enfold/functions.phpBest regards,
YigitApril 6, 2016 at 12:16 pm #608884Thanks Yigit!
I do but in the “Special Haading” don’t work this html. This is my example:
[av_heading heading='Benvinguts a <span class="h1gran">ben bo</span>' tag='h1' style='blockquote modern-quote' size='60' subheading_active='subheading_below' subheading_size='18' padding='0' color='custom-color-heading' custom_font='#ffffff']When I publish I get:
Benvinguts a <span class=”h1gran”>ben bo</span>Maybe is because the ” in the “h1gran”?
Note: I create in quick css this tag:
.h1gran { font-size: 4em; font-weight: bold; }Thanks!
Joan
April 6, 2016 at 11:27 am #608836In reply to: Problem enter the CSS Code
Hi!
.widget_product_categories li a { color: red !important; font-size: 20px !important; }Gruß,
AndyApril 6, 2016 at 11:16 am #608823Hi bcndisseny!
You can edit your element and add a span with custom class as following
Hello <span class="my-custom-text">world!</span>and then add following code to Quick CSS in Enfold theme options under General Styling tab
.my-custom-text { font-size: 40px; color: orange; }Cheers!
YigitApril 6, 2016 at 11:11 am #608817In reply to: sidebar, footer and header styling
Hey!
1.) Then try to add an !important:
ul.nested_nav a { font-size: 14px !important; color: red; }Don’t forget to clear browser cache and hard refresh a few times.
4.) When editing your page scroll down and look on the right side for “Header visibility and transparency”. Make your adjustments there.
In Enfold->Header->Header Layout->”Header Style” you can choose “Default”.Regards,
AndyApril 6, 2016 at 10:48 am #608805Topic: Change Pencil Icon
in forum EnfoldJeeBar
ParticipantSorry for re-asking a question that’s been asked in various variations before, but I need help replacing the pencil icon.
Read half a dozen posts, failed to find in docs, tried different things recommended, can’t crack it.Managed to get it swapped on individual posts and category pages that are set to “single author” mode, but it doesn’t work on category pages set to grid layout.
Here’s the code recommend elsewhere that’s doing most of what I want:
.blog-meta span.iconfont { background-image: url(https://thetachisjsu.com/wp/wp-content/uploads/2016/04/OXCoatofArms.png); background-size: contain; background-repeat: no-repeat; background-position: center center; } .blog-meta span.iconfont:before { display: none; }And here’s what I tried doing to make the fallback image on grid mode swap.
span.slider-fallback-image { background-image: url(https://thetachisjsu.com/wp/wp-content/uploads/2016/04/OXCoatofArms.png);}Please advise.
P.S. Why is it a pencil icon, anyway? That’s the universal symbol for “click to edit” and that’s not what it does. And why’s it so hard to change? Seems like virtually *everybody* would want to change it from a weird pencil. Consider this another request to make this a click-to-customize setting. Thanks.
April 6, 2016 at 10:38 am #608801Topic: How to increase a font size in a part of a "Special Heading"
in forum Enfoldbcnsites
ParticipantHi!,
I have this “Special Heading”, in “Content”, “Heading text”: Benvinguts a ben bo
I would like to increase the size font only in the “ben bo” text, not in all the line.I tried in the degub editor, withour exit:
[av_heading heading='Benvinguts a ben bo' tag='h1' style='blockquote modern-quote' size='60' subheading_active='subheading_below' subheading_size='18' padding='0' color='custom-color-heading' custom_font='#ffffff']Is it possible?
Thanks in advance!
PD: a suggestion: it would be great to use a search in the topic list…
JoanApril 6, 2016 at 10:23 am #608786In reply to: Problem enter the CSS Code
Hi!
wäre notwendig wenn du genau zeigst von was du die Schriftgröße und Farbe ändern willst. Bitte immer Screenshots etc. verwenden. Vielleicht ist es ja das heir:
#top div ul.product_list_widget li a { font-size: 15px; color: red; }Die Thumbnails kannst du hiermit vergrößern:
img.attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image { width: 100px; }Gruß!
AndyApril 6, 2016 at 7:31 am #608729In reply to: Changing Tabs TITLE font size
Hey a00109943!
Please use the following to your CSS
.js_active .tab_titles .tab:first-child { font-size: 16px; }
let us know if it works
Regards,
BasilisApril 6, 2016 at 7:14 am #608716Topic: Changing Tabs TITLE font size
in forum Enfolda00109943
ParticipantHi there,
I was able to use CSS to change the font size of the content in the tabs section but how do I change the size of the font for the Title of each tab?
Thanks a million!
Ben
-
This reply was modified 10 years ago by
-
AuthorSearch Results
-
Search Results
-
Topic: some questions
Hi, for my site i have things im not getting done:
Site is visible in private content
1) Upperheader with tel and language links, is possible to add some height to this and larger font ?
2) Is it possible to remove search from menu and put it in upper header ?
3) why i need to add some thing in permlink for portfolio ? it would be better if portfolio-item is removed
4) on the homepage there is a lot of white space between the items, is it possible to remove them ?
for example, between “MEER DAN 10 JAAR ERVARING” and “KENNIS, KUNDE, EXPERTISE” is almost 2 cm
5) in this image
i have 2 sizes for the buttons, possible to have them the same ?
6) search like this possible ?
Topic: Customize MailChimp Form
Hi, I’m using Enfold and it’s working fine.
Congratulations for it!My doubt is, I’m using the MailChimp signup form from ALB but I don’t know how to customize the button. I want to change it’s color, shape and Font size.
My website is israellaramalho.com.br
I am trying to increase the font size of a full width submenu content element. I added this to my custom CSS, but it does not work.
#top .av-subnav-menu > li > a {
font-size: 48px;
}I am also trying to place the logo on the left side of the full-width submenu, but there is no option to add an image. Is this possible and make the image sticky with the menu?
I need some help making changes to the product page. Here’s what I’m trying to achieve:
1. Change the product title to a smaller font size
2. Move the product description box so its permanently below the product image
3. Change the price font on the product page only without changing the font size for all the category listings
4. Change the quantity -/+ button to a drop down menu
5. Centre category product titles for recommended productsCurrent layout
http://www.theunderfloorheatingcompany.co.uk/product/heatmiser-neostat-programmable-thermostat-silver/What I’m trying to achieve
http://www.heatmisershop.co.uk/heatmiser-neostat-programmable-thermostat-platinum-silver/Any help is greatly appreciated!
Topic: Blog Listing Font Size
Hello,
Is there any way to increase the font size of the blog post heading when displayed in the blog listing.
See the posts headings NEW WEBSITE, NEW TEAM MEMBERS, etc. under the heading LATEST NEWS in our website.
Thank you.
Best,
Michael
Topic: Change Pencil Icon
Sorry for re-asking a question that’s been asked in various variations before, but I need help replacing the pencil icon.
Read half a dozen posts, failed to find in docs, tried different things recommended, can’t crack it.Managed to get it swapped on individual posts and category pages that are set to “single author” mode, but it doesn’t work on category pages set to grid layout.
Here’s the code recommend elsewhere that’s doing most of what I want:
.blog-meta span.iconfont { background-image: url(https://thetachisjsu.com/wp/wp-content/uploads/2016/04/OXCoatofArms.png); background-size: contain; background-repeat: no-repeat; background-position: center center; } .blog-meta span.iconfont:before { display: none; }And here’s what I tried doing to make the fallback image on grid mode swap.
span.slider-fallback-image { background-image: url(https://thetachisjsu.com/wp/wp-content/uploads/2016/04/OXCoatofArms.png);}Please advise.
P.S. Why is it a pencil icon, anyway? That’s the universal symbol for “click to edit” and that’s not what it does. And why’s it so hard to change? Seems like virtually *everybody* would want to change it from a weird pencil. Consider this another request to make this a click-to-customize setting. Thanks.
Hi!,
I have this “Special Heading”, in “Content”, “Heading text”: Benvinguts a ben bo
I would like to increase the size font only in the “ben bo” text, not in all the line.I tried in the degub editor, withour exit:
[av_heading heading='Benvinguts a ben bo' tag='h1' style='blockquote modern-quote' size='60' subheading_active='subheading_below' subheading_size='18' padding='0' color='custom-color-heading' custom_font='#ffffff']Is it possible?
Thanks in advance!
PD: a suggestion: it would be great to use a search in the topic list…
JoanHi there,
I was able to use CSS to change the font size of the content in the tabs section but how do I change the size of the font for the Title of each tab?
Thanks a million!
Ben
