FYI – All I want to do is something like this:
<p style=”text-align: center; font-family: ‘Roboto Slab’; font-size: 18px;”>There is no love sincerer than the love of food – <span style=”font-family:’Roboto’;font-size:14px”>George Bernard Shaw</span></p>
Hey!
Yes you could do that, or just create a new CSS query for screens above 1250:
@media only screen and (min-width: 1250px) {
.custom-font {
font-size: 20px !important;
}}
Best regards,
Rikard
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 687px) {
#top #wrap_all .main_color h1{
font-size: 32px;
}
.phone-info .av_font_icon {
margin: 0 7px !important;
}
}
Cheers!
Josue
Thank you for your help, it’s very much appreciated.
The H2 font-size is now too small on screen sizes above 1250px. Do I change the max-width to a higher number or change the H2 font-size in the Advanced Styling section?
Well don’t take it literally… of course there is no such CSS property “enfold way, no other way possible ever”. It’s a failed attempt at evil sarcasm.
The code is in /css/base.css at line 228.
The problem is the CSS selector. It’s way too broad. #top is the ID you give to the <body> tag. And then you go on to define that any <label> should be displayed as a block, and should be bold, and font size 12px. That’s inconsiderate of any plugin that uses form elements.
Why not isolate things? i.e. give the form itself an ID, then reference it to style input types and their respective labels?
Hi!
1. Try this for the font color and size.
.main-title, .main-title a { font-size: 20px !important; color: blue !important; }
2. I’m not really sure what your trying to display there. Are you trying to have a filter where the blog posts are displayed depending on which category you click? Go ahead and send us a link to your page and take a screenshot highlighting what your trying to do.
Best regards,
Elliott
Hi!
That depends. Please post a screenshot and show the changes you would like to make.
If you would like to change the icon to another fontello icon, please see – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
And if you would like to use an image, please add following code to Quick CSS in Enfold theme options under General Styling tab
.image-overlay.overlay-type-extern .image-overlay-inside:before {
background-image: url(//kriesi.at/wp-content/themes/kriesi/images/logo.png);
content: '';
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
background-color: transparent;
}
Best regards,
Yigit
Thank you, is there a way to make that responsive so it stays centered as the screen size decreases? Also is there a way I could make the font size decrease so it can all stay on one line.
Thanks for the fantastic support!
Hey gearouthere!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
#top #menu-item-search.menu-item-search-dropdown>a:after {
content: ' Search';
font-size: 15px;
}
Best regards,
Yigit
Now we’re talking- THX
1. OK, i need some guideline to get point 1 done.
2. I also would need a bunch of help in regard CSS adjustments Elljott.
3. I see
4. i didn’t even know there is a shopping cart dropdown, so let’s try to fix that.
error messages:
Configure the viewport
Your page does not have a viewport specified. This causes mobile devices to render your page as it would appear on a desktop browser, scaling it down to fit on a mobile screen. Configure a viewport to allow your page to render properly on all devices.
Size tap targets appropriately
Some of the links/buttons on your webpage may be too small for a user to easily tap on a touchscreen. Consider making these tap targets larger to provide a better user experience. The following tap targets are close to other nearby tap targets and may need additional spacing around them. The tap target Parent Directory and 1 others are close to other tap targets see screenshot.
Use legible font sizes
The following text on your page renders in a way that may be difficult for some of your visitors to read. Use legible font sizes to provide a better user experience. The following text fragments have a small font size. Increase the font size to make them more legible.
avia_gallery_mode.css and 1 others render only 5 pixels tall (16 CSS pixels) see screenshot.
Apache/2.2.27…ch.com Port 80 renders only 5 pixels tall (16 CSS pixels) see screenshot.
Hi there,
Through various web searches I’ve been able to figure out how to change the font size of the Easy Slider captions (mobile only) and remove the grey boxes behind them. I have two issues I haven’t yet been able to solve; any help would be appreciated:
1. When I look at the mobile version on an iPhone at its usual (vertical) orientation, the captions “hug” the bottom left corner nicely. When I rotate the phone, however, the captions move up towards the centre of the photo, obscuring the photo. How can I move the captions back down towards the bottom left corner when the phone is rotated?
2. The space between the caption title and subtitle is a bit too big when in this rotated mobile view. How can I bring them closer together (i.e. how can I bring the caption title down closer towards the subtitle)?
Any help would be greatly appreciated – thanks again for the awesome theme and support.
Curtis
Hi Ismael,
Thank you for your fast reply! Im getiing there almost
2. does work, but what code should I add to change font colour and size?
1.I v found the custom widget area and played around with it, I just cant figure out to sort only messages of 1 particular category.
It only gives me the options to choose between “dropdown”, number of messages” or “hiearchie”
Thank You!
Anneloes
Hi,
I’m trying to insert a code block which should contain a contact form into a page. I used the code block element and pasted my code. When I update the page it is displayed correctly but afterwards the layout editor is broken. The code is being rendered as an element in the editor window additionally to the code block element. When I click on the code block element, I get the pop-up but the code box is empty. When I remove the element which holds the code I inserted. It disappears but there are broken pieces of the elements below the code block which say: [/av_codeblock] [av_textblock size='' font_color='' color=''] …
Please tell me how to fix this. Code I tried to insert and screenshots are attached.
Hmm… I already checked in this section but I can only see options to customize font color, background color, font size, line height, font family.
1/ Where can I change the font style (bold, italic, etc.), the font weight (thin, medium, regular, etc.), the font height, the letter spacing?
2/ The Advanced Style Editor is for headings and header. Thus where can I customize my body text? (same questions as above)
Thanks ;)
-
This reply was modified 11 years, 1 month ago by
iclo.
Hi!
Thanks for your help, I really appreciate this, but unfortunately this has no effect either. I noticed when there is a background, the effect of shifting isn’t visable. I really don’t know where to look to change this. The only thing I did, is remove the bullits, the background and border, besides fontsize, color and hover, as seen in the provided css. I’m a bit desperate now:-( Do you have an other suggestion?
Thanks in advanche!
Awesome! Thanks Josue. How did you do it?
Now it would be perfect if I could easily customize these parameters…
font-size; font-style; font-weight; height; letter-spacing; line-height;
Hey!
That text is already bold, use this code in Quick CSS to increase its size:
.phone-info span {
font-size: 14px;
}
Regards,
Josue
Hi!
You can use convert he current filter buttons to icons, add this to Quick CSS:
/* Styling */
.inner_sort_button:after{
font-family: 'entypo-fontello';
font-size: 24px
}
.inner_sort_button span {
display: none;
}
#js_sort_items .text-sep{
display: none !important;
}
#js_sort_items a{
padding: 0 10px;
}
/* Icon codes for each icon (note the classes) */
.all_sort_button .inner_sort_button:after{
content: "\e822";
}
.branding_sort_button .inner_sort_button:after{
content: "\e824";
}
.interactive-design_sort_button .inner_sort_button:after{
content: "\e826";
}
.photography_sort_button .inner_sort_button:after{
content: "\e827";
}
.print-design_sort_button .inner_sort_button:after{
content: "\e828";
}
.web-design_sort_button .inner_sort_button:after{
content: "\e839";
}
P.S.
To find out the codes for each Icon: create a Page and add any icon-based element, when you’re about to select the icon to use, place the mouse over for some seconds, a tooltip with the icon code will show.
Regards,
Josue
Hi!
Check the debug mode or actual shortcode below. There are two image element:
[av_image src='http://forum-produktion.automotiveit.eu/wp-content/uploads/2014/12/Referenten-Koehler-Moderation.jpg' attachment='1444' attachment_size='full' align='center' animation='no-animation' link='' target='' styling='' caption='' font_size='' appearance='' custom_class=''][/av_image]
[av_image src='http://kongress.automotiveit.eu/wp-content/uploads/2010/10/Referenten-Koehler-Moderation.jpg' attachment='1441' attachment_size='full' align='center' animation='no-animation' link='' target='' styling='' caption='' font_size='' appearance='on-hover' custom_class='frame']
[/av_image]
Remove the other. Somehow it is not showing on the ALB which is weird.
Regards,
Ismael
Hi!
Can you copy and paste the exact errors your getting?
1. For the viewport issue we include that meta tag on line 35 in the header.php file.
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
2. See here, https://developers.google.com/speed/docs/insights/UseLegibleFontSizes. You’ll probably need to change the CSS around quite a bit to satisfy Google. Honestly they are being kind of anal about this so I wouldn’t care about it too much as long as your satisfied with how it looks on your device. You cannot always trust online testing tools, it’s a program and programs have bugs.
3. Touch elements too close – this is the same thing. It’s way too vague of a description to figure out what to do. You could spend a couple of days playing around with your margins to try and satisfy Google. If it really matters then you’ll want to hire a Google mobile expert for this.
4. Content not sized to viewport – This is probably referring to our shopping cart dropdown which we use CSS to hide on the ride side of the page. Google probably thinks this is causing a horizontal scroll bar but we have overflow set to hidden so it displays nicely for mobile users. If you want to remove the shopping cart dropdown then we can try that.
Regards,
Elliott
-
This reply was modified 11 years, 1 month ago by
Elliott.
Yeah, I figured it out:-) !!
Do do wanna help me with just one more thing? I use a menu in a widget on the left side of the page but each of the menu items still move up or down a bit when I visit the corresponding page. Can you see whats happening here and help me fix this? I cant find the reason:-(
Here is the corresponding css for so far:
#top .widget_nav_menu li a { color: #887373; font-size: 12px; letter-spacing: 1px; font-weight: 400; text-transform: uppercase; font-family: ‘Muli’ ; }
#top .widget_nav_menu li:hover a { color: #dedcd1; font-size: 12px; letter-spacing: 1px; font-weight: 400; text-transform: uppercase; font-family: ‘Muli’ ; }
.main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item { background: transparent; }
.widget_nav_menu ul:first-child>.current-menu-item, .widget_nav_menu ul:first-child>.current_page_item, .widget_nav_menu ul:first-child>.current-menu-ancestor { box-shadow: none; }
#top .widget ul { list-style: none; }
Thanks again!!
Lara
Hi Shane!
Please increase font sizes even more since you have disabled responsive layout, font looks small on mobile devices such as my iphone.
Regards,
Yigit
Hey Susan!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.recentcomments a, .widget_recent_entries li a { font-size: 14px; }
If that does not help, please post the link to your website :)
Regards,
Yigit
Hi royaltask!
Please add following code to Quick CSS
.special_amp {
font-family: inherit;
font-style: inherit;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit!important;
}
Cheers!
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
a#advanced_menu_toggle:before {
content: 'menu';
font-size: 15px;
}
Regards,
Yigit
Hi Andy
It’s not the background that Elliot changed for me but the icon. And that worked fine on an iconbox but I cannot seem to get it to work on a iconlist. I wanted to place a custom icon in the list replacing the Fontello icons.
This is the original code that Elliott gave me was to change the icon in the iconbox to a custom icon (not a fontello font) see code below:-
.custom-iconbox .iconbox_icon.heading-color {
background-image: url(https://.........mywebsite url.........)!important;
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.custom-iconbox .iconbox_icon.heading-color:before {
display: none;
}
I changed the iconbox to iconlist thinking that would change the icons in the iconlist as well but it didn’t.
Where I am going wrong??
Regards
Richard
http://m.pascodentaltampa.com/team
This is a simplified, mobile version of the main site. The body text looks right on most mobile devices, but is much smaller on iPhones. I am just using the font size in the text layout editor to modify text. I do not have an iPhone to test with, but should I be using em instead to be consistent on all devises or any other advise?
Hi!
You need to the put this code somewhere in your Quick CSS or child theme style.css (i noted JS code there, remove it):
.mc4wp-form form{margin:0!important;clear:both}
.mc4wp-form p br{display:none}
.mc4wp-form label{display:block;visibility:visible;position:relative;margin-bottom:7px;font-weight:600}
.mc4wp-form p{position:relative;clear:both;float:left;width:100%}
.mc4wp-form p.hidden{position:absolute;width:0;left:0;top:0}
.mc4wp-form .form_element_half{width:49.5%;float:left;margin-left:1%;clear:none}
.mc4wp-form .form_element_third{width:32.6%;float:left;margin-left:1%;clear:none}
.mc4wp-form .form_element_two_third{width:66.4%;float:left;margin-left:1%;clear:none}
.mc4wp-form .form_element_fourth{width:24.2%;float:left;margin-left:1%;clear:none}
.mc4wp-form .form_element_three_fourth{width:74.8%;float:left;margin-left:1%;clear:none}
.mc4wp-form .first_form{clear:both;margin-left:0}
@media only screen and (max-width: 479px) { .responsive .mc4wp-form .form_element{width:100%;clear:both;margin-right:0;margin-left:0;float:none} }
#top .mc4wp-form input[type='text'],#top .mc4wp-form input[type='email'],#top .mc4wp-form select,#top .mc4wp-form textarea{width:100%;margin-bottom:0;display:inline;min-width:50px;padding:13px;border-radius:2px}
#top .mc4wp-form select{-webkit-appearance:none;border-radius:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);background-position:center right;background-repeat:no-repeat;border-radius:2px}
.mc4wp-form .button{margin:0;padding:16px 20px;border-radius:2px;border-bottom-width:1px;border-bottom-style:solid;font-weight:400;font-size:12px;min-width:142px;outline:none}
.mc4wp-form .modified_width .button{width:100%;padding:13px 10px 14px;min-width:0}
.mc4wp-form p input,.mc4wp-form p textarea,.mc4wp-form p select{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}
Also make sure to have set this in the mc4wp Form options.
Best regards,
Josue
Hi NicRW!
It looks like the sizes are being changed by a plugin.
If you want to use some CSS then drag a codeblock element to that page and add this inside.
<style type = "text/css">
.avia_textblock { font-size: 12px !important; }
</style>
Cheers!
Elliott