-
AuthorSearch Results
-
June 1, 2013 at 3:29 pm #114644
In reply to: Enfold Feature Requests
the tab and accordion modules are too restrictive … i would love to embed any other module inside them.
tabs and accordion with icon list, team member info, images, video, progress bar etc etc
i would love to be able to set the menu and mega menu font size.
i would love parallax background option which can be defined for each page
Nick Edit: You can stack other shortcodes inside tab or accordion.
You would first need to enter debug mode in /config-templatebuilder/config.php line 45
(as explained in the lines above it). and then you would just paste
the shortcode for whatever you need inside the shortcode for tabs
for example this is 2 easy sliders, one inside each tab, and tab
inside a single column:
[av_one_full first]
[av_tab_container position='top_tab' boxed='border_tabs' initial='1']
[av_tab title='Tab 1' icon_select='no' icon='1']
[av_slideshow size='no scaling' animation='slide' autoplay='true' interval='5']
[av_slide id='51']
[av_slide id='52']
[/av_slideshow]
[/av_tab]
[av_tab title='Tab 2' icon_select='no' icon='1']
[av_slideshow size='no scaling' animation='slide' autoplay='true' interval='5']
[av_slide id='53']
[av_slide id='54']
[/av_slideshow]
[/av_tab]
[/av_tab_container]
[/av_one_full]June 1, 2013 at 9:02 am #122380In reply to: Calculate font sizes
Actually I guess Kriesi doesn’t want to scale down the default size to 13px/0.813em but he used those font size & line height values which gave him the best results (nice typography, readability, etc.). Maybe some articles about typography will help you: http://webdesignerwall.com/tutorials/typographic-contrast-flow , http://coding.smashingmagazine.com/2009/04/03/8-simple-ways-to-improve-typography-in-your-designs/ , http://ilovetypography.com/2008/02/28/a-guide-to-web-typography/ and http://speckyboy.com/2009/08/31/50-essential-web-typography-tutorials-tips-guides-and-best-practices/
June 1, 2013 at 8:48 am #122605In reply to: Entypo Icon in a circle
You can use the font icon shortcode and wrap it into a paragraph with rounded corners like:
<p style="border-radius: 20px; background: #333; height: 40px; line-height: 29px; float: left; padding: 10px;">
[av_font_icon color="#1e73be" icon="31" size="20px"]
</p>June 1, 2013 at 5:01 am #122248In reply to: Menu overlapping on the logo (ipad)
Hi,
@Michael Oeser: Thanks for the tip. I think it is a good idea.
@purstodio: You can use Media Queries to target the iPad view.
@media only screen and (min-width: 768px) and (max-width: 989px) {
.responsive .main_menu ul > li > a {
font-size: 11px;
}
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
May 31, 2013 at 11:01 am #24117Topic: Calculate font sizes
in forum EnfoldMichael Oeser
ParticipantI need to change some of the font sizes which I did in the CSS field of the themes options and basically that´s fine. But I simply entered pixel dimensions whilst enfold uses both px/em values.
What I don´t get is how you calculated those values. For example for the body Enfolds defaul CSS says
font: 13px/1.65em
The reset sets the default size to 100% which is normally 16px. 13px would then equal 0.813em and not 1.65em. I´m sure I´m missing something but I don´t get what.
Cheers
Michael
May 31, 2013 at 6:11 am #122022In reply to: Add a shortcode inside a LayerSlider layer
Hi,
I tested this code, place it on a Div/Video. It works ok but you are correct they are not responsive. You need to add a special class then use Media Queries to make them responsive.
<div class="avia-button-wrap avia-button-center avia-builder-el-2 el_after_av_textblock avia-builder-el-last "><a href="http://www.thisISaLink.com" class="avia-button avia-icon_select-yes avia-color-red avia-size-medium avia-position-center " target="_blank"><span class="avia_button_icon avia-font-entypo-fontello">♥</span><span class="avia_iconbox_title">Click me</span></a></div>Regards,
Ismael
May 31, 2013 at 2:23 am #122099In reply to: LayerSlider font colour
I’ve tried the adding the code to the css in the Style section. It doesn’t make any difference – it still won’t go white.
I’ve also tried using a PNG text image but I’m having trouble with the sizes – they are too big even when I make them the right font in the editor.
Any more suggestions? It’s getting annoying.
May 30, 2013 at 7:55 pm #121981In reply to: Custom CSS and Text/font size
Hi,
You are going about it all wrong. What you need to do is install Chrome Developer Tools. This is what we use to modify CSS live. Easy to use and no need to know much css even. Take a look at the videos and in 15 minutes you will solve your problem. http://www.youtube.com/watch?v=TvJflwF8eYM and http://www.youtube.com/watch?v=dNsM2PUkZ1g
To create a child theme. Just use this plugin, and then look at the files the plugin made, compare them to yours and you will see where the problem was http://wordpress.org/plugins/child-themify/
CSS is based on 2 concepts specificity and cascade. a naked h1 tag has little specificity and chances are (100%) that after your h1 tags , the theme’s original h1 tag definitions will come later in the cascade and will override your h1 tags since in a child theme they will be the very first css processed in the cascade.
Thanks,
Nick
May 30, 2013 at 7:24 am #122019In reply to: Add a shortcode inside a LayerSlider layer
Hi,
@formateins: Thanks.
@olylax21: Shortcode is not going to work. You should use the html generated by the button shortcode. It looks something like this.
<div class="avia-button-wrap avia-button-center avia-builder-el-2 el_after_av_textblock avia-builder-el-last "><a href="http://www.thisISaLink.com" class="avia-button avia-icon_select-yes avia-color-red avia-size-medium avia-position-center " target="_blank"><span class="avia_button_icon avia-font-entypo-fontello">♥</span><span class="avia_iconbox_title">Click me</span></a></div>Regards,
Ismael
May 30, 2013 at 7:11 am #121224In reply to: Layer Slider and Secondary Menu
Okei, here is my custom css:
.main_menu ul:first-child > li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-size: 16px;
font-weight: 600;
font-size: 16px;
}
#top #menu-item-search.menu-item-search-dropdown>a {display:none;}
#header_meta {
display: none;
}
May 29, 2013 at 7:47 pm #121728In reply to: Sidebar Background
Thank your Ismael for your time.
Actually, the code is working but the problem is when I get back to the admin panel, everything is fucked. I have modify a bit the code, because the one up there didn’t have the bottom-border radius.
What I want is to use that code in a 1/3 panel. The actual code that I use is that. If you don’t understand what I mean, I can send you my login/pass and you’ll be able to take a look at it.
thank you.
<div class=”flex_column av_one_third avia-builder-el-7 el_after_av_two_third avia-builder-el-last “><div class=”avia_textblock”>
<div style=”color: #ffffff; background-color: #434c56; padding: 20px; border-top-left-radius: 25px; border-top-right-radius: 25px; margin-bottom: -40px; text-align: center;”>
<p style=”font-size: 15px;”>
</p><p style=”font-size: 15px;”>Or simply fill in your details below
and we will get back to you.</p>
<p style=”text-align: center; font-size: 15px;”>You have nothing to lose and
only new business to gain.</p></div>
</div>
<div style=”color: #ffffff; background-color: #434c56; padding: 20px; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; margin-bottom: -40px; text-align: center;”>
<form action=”http://symbioticmarketing.co.uk/services/corporate-blogging-copywriting/” method=”post” class=”ajax_form avia-builder-el-9 el_after_av_textblock avia-builder-el-last ” data-avia-form-id=”1″>
<fieldset>
<p class=”” id=”element_avia_name_1″><label for=”avia_name_1″>Name*</label> <input name=”avia_name_1″ class=”text_input is_empty” type=”text” id=”avia_name_1″ value=””></p>
<p class=”” id=”element_avia_e-mail_1″><label for=”avia_e-mail_1″>E-Mail*</label> <input name=”avia_e-mail_1″ class=”text_input is_email” type=”text” id=”avia_e-mail_1″ value=””></p>
<p class=”” id=”element_avia_contact_number_1″><label for=”avia_contact_number_1″>Contact Number*</label> <input name=”avia_contact_number_1″ class=”text_input is_empty” type=”text” id=”avia_contact_number_1″ value=””></p>
<p class=”” id=”element_avia_sign_up_for_our_email_newsletter_1″> <input name=”avia_sign_up_for_our_email_newsletter_1″ class=”input_checkbox ” type=”checkbox” id=”avia_sign_up_for_our_email_newsletter_1″ value=”true”><label for=”avia_sign_up_for_our_email_newsletter_1″>Sign up for our email newsletter</label></p>
<p class=”” id=”element_avia_message_1″> <label for=”avia_message_1″ class=”textare_label hidden textare_label_avia_message_1″>Message*</label> <textarea name=”avia_message_1″ class=”text_area is_empty” cols=”40″ rows=”7″ id=”avia_message_1″></textarea></p>
<p class=”hidden”><input type=”text” name=”avia_avia_username_1″ class=”hidden ” id=”avia_avia_username_1″ value=””></p>
<p class=””><input type=”hidden” value=”1″ name=”avia_generated_form1″><input type=”submit” value=”Submit” class=”button”></p>
</fieldset>
</form>
<div id=”ajaxresponse_1″ class=”ajaxresponse ajaxresponse_1 hidden”></div>
</div>
</div>
May 29, 2013 at 7:19 pm #24019Topic: Add a shortcode inside a LayerSlider layer
in forum Enfoldolylax21
ParticipantI am trying to add a button shortcode to a layer inside the LayerSlider. It will not render the button, it just displays the shortcode.
[av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
May 29, 2013 at 2:39 pm #24007Topic: Custom CSS and Text/font size
in forum Enfoldpgamet
ParticipantHi,
I want to make all the text (headers, paragraphs, etc) in my site larger. I created a style.css and played with changed the p, h1, and body tags but changes don’t show up. Do I have the style sheet attached incorrectly? Any tips about the responsive nature of fonts. I see you have the body set for px and em. Not sure if there is a magic formula for changing these two numbers. Thanks!
I created a child theme and put this in the css:
/*
Theme Name: Enfold Child
Theme URI: http://example.com/
Description: Child theme for Enfold
Author: Paige Gamet
Author URI: http://example.com/about/
Template: enfold
Version: 0.1.0
*/
@import url(“../enfold/style.css”);
body {font: 24px/1.9em }
p {font-size: 30px;}
h1 { font-size: 120x; line-height: 2.1em; margin-bottom: 20px;}
h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
h5 { font-size: 16px; line-height: 1.1em; } /*17*/
h6 { font-size: 14px; line-height: 1.1em; }
.main_menu .menu li a strong {
font-size: 25px;
}
May 29, 2013 at 9:20 am #114643In reply to: Enfold Feature Requests
So I drop also a few notes… :)
1. Avia Builder – More editor comfort
Include an option or function to make the elements at the top “sticky”. Maybe a small pin icon to fix it manually for the customer or by checking the scroll event when editing a post/page/cpt. Other form elements needs to be handled so the builder is always on top. Pages mostly do get very long and you have to scroll a lot at this point.
Short video of the idea: http://www.screenr.com/zl7H
2. Avia Builder – Debug features
Add a button (maybe beside the template button) to activate the debug field. Right beneath the field a memory allocated info could be added. This would save you guys alot of support requests… :)
3. Avia Builder – Copy/Paste
Add another Button to the builder wich enables copying of the whole post/page/cpt-layout so the shortcodes and content can be copied to a new post or a different site. Should be only a few lines of JS.
4. Avia Framework Options
Please extend the options provided. As mentioned from other users before, there are several things just missing, which could be easily added (like Google fonts, etc.). Additionally, I would like to have:
– some input fields to trim certain CSS aspects (margins, paddings, maybe also top and left settings)
– wpautop enable/disable
– Blog settings (more settings related to the blog page itself outside of builder)
– Adding text-shadows and MAYBE box-shadows as option (simple input field with rgba color picker)
– Font size settings (bodytext plus all headers)
Should be enough for now :)
May 29, 2013 at 2:41 am #121727In reply to: Sidebar Background
Hi,
This is the code for that area.
<div class="flex_column av_one_third avia-builder-el-7 el_after_av_two_third avia-builder-el-last "><div class="avia_textblock">
<div style="color: #ffffff; background-color: #434c56; padding: 20px; border-top-left-radius: 25px; border-top-right-radius: 25px; margin-bottom: -40px; text-align: center;">
<p style="font-size: 15px;"><img class="alignnone wp-image-1928" alt="ContentCTA" src="http://symbioticmarketing.co.uk/wp-content/uploads/2013/04/ContentCTA.png" width="290" height="152"></p>
<p style="font-size: 15px;">Or simply fill in your details below<br>
and we will get back to you.</p>
<p style="text-align: center; font-size: 15px;">You have nothing to lose and<br>
only new business to gain.</p></div>
</div>
<form action="http://symbioticmarketing.co.uk/services/corporate-blogging-copywriting/" method="post" class="ajax_form avia-builder-el-9 el_after_av_textblock avia-builder-el-last " data-avia-form-id="1">
<fieldset>
<p class="" id="element_avia_name_1"><label for="avia_name_1">Name*</label> <input name="avia_name_1" class="text_input is_empty" type="text" id="avia_name_1" value=""></p>
<p class="" id="element_avia_e-mail_1"><label for="avia_e-mail_1">E-Mail*</label> <input name="avia_e-mail_1" class="text_input is_email" type="text" id="avia_e-mail_1" value=""></p>
<p class="" id="element_avia_contact_number_1"><label for="avia_contact_number_1">Contact Number*</label> <input name="avia_contact_number_1" class="text_input is_empty" type="text" id="avia_contact_number_1" value=""></p>
<p class="" id="element_avia_sign_up_for_our_email_newsletter_1"> <input name="avia_sign_up_for_our_email_newsletter_1" class="input_checkbox " type="checkbox" id="avia_sign_up_for_our_email_newsletter_1" value="true"><label for="avia_sign_up_for_our_email_newsletter_1">Sign up for our email newsletter</label></p>
<p class="" id="element_avia_message_1"> <label for="avia_message_1" class="textare_label hidden textare_label_avia_message_1">Message*</label> <textarea name="avia_message_1" class="text_area is_empty" cols="40" rows="7" id="avia_message_1"></textarea></p>
<p class="hidden"><input type="text" name="avia_avia_username_1" class="hidden " id="avia_avia_username_1" value=""></p>
<p class=""><input type="hidden" value="1" name="avia_generated_form1"><input type="submit" value="Submit" class="button"></p>
</fieldset>
</form>
<div id="ajaxresponse_1" class="ajaxresponse ajaxresponse_1 hidden"></div>
</div>He used border-top-left-radius: 25px; border-top-right-radius: 25px;.
Regards,
Ismael
May 28, 2013 at 4:07 pm #120517In reply to: Problem with table layout in mobile devices
Thanks, Devin. I recreated all the tables with no success. The problem persists. My best guess so far is that is a problem in one of these classes:
@media only screen and (max-width: 767px)
{
.responsive div .avia-data-table table,
.responsive div .avia-data-table tbody,
.responsive div .avia-data-table tr,
.responsive div .avia-data-table td,
.responsive div .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;}
.responsive .avia-data-table{border-style:solid; border-width: 1px;}
.responsive .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
.responsive .avia-data-table .avia-button-row, .responsive .avia-data-table tr:first-child th{display:none;}
.responsive .avia-data-table td:before {
display:block;
font-style: italic; font-size: 11px;
}
.responsive .avia-data-table td {
position: relative;
}
}May 25, 2013 at 7:34 pm #119593In reply to: Enfold – Responsive Slide Out Menu **ISSUE**
Hi,
For create&design, the solution is to use EM and not PT to define the size of the font since em is responsive. If you changed the font size to 5.5em it will shrink . Not sure if that font is working on not since removing the font family doesn’t change anything for me.
h6 {
font-family: BebasNeueRegular,Geneva,Arial,Helvetica,sans-serif!important;
font-size: 5.5em !important;
}=====================
for more space please open up /js/avia.js and find line 766 and change it to look like. You can change the 116 to a number you want the height of the header to be. Start off with changing it to the height of your logo and work up from there.
el_height = 116,Thanks,
Nick
May 25, 2013 at 11:44 am #120061In reply to: How to change default font size
Hi!
melonmelon thanks for helping us out :)
Regards,
Peter
May 25, 2013 at 9:05 am #120060In reply to: How to change default font size
Thanks
May 25, 2013 at 7:45 am #120059In reply to: How to change default font size
quick-css:
p {font-size: 20px;}
May 25, 2013 at 6:38 am #23503Topic: How to change default font size
in forum Enfoldboag
ParticipantHi,
I would like the paragraph font size to be slightly larger. How do I set the default paragraph font size to something different?
Thanks
May 24, 2013 at 11:52 pm #120346In reply to: remove dropdown boxes on shop page
Hi,
Please make sure all categories have a description, because when there is no description: Choice 1 below will push down from the category image and on pages with no description everything will look good, however on pages that have a description, Choice 1 will push the description down as well. Choice 2 will push from the category description , creating a space between the description and product images. However if there is no category description, the description container will also be missing, so nothing will change on those pages. So please make sure that **every category and sub-category** have a description and an image.
Use 1 or 2 (read above for explanation, if both are used, there will be space between category image and description, and space between description and product images)
1. To create the space between category title and products please add this css, and adjust bottom margin as needed (it is 0 currently).
#top.tax-product_cat .page-thumb {
margin-bottom: 50px;
}2. To create the space between category description and products use this css.
#top.tax-product_cat .term-description {
margin-bottom: 50px;
}==================
To add a separator will be more difficult and will involve editing the plugin. Since you didnt specify , i just included instructions above on how to add space.
=========
To change the size/color etc. of title this is the current css (i didnt modify anything, change font size below)
#top.tax-product_cat .title_container .main-title {
font-size: 16px;
min-height: 36px;
line-height: 2.3em;
font-weight: 400;
}==================
To modify the space between product images change the % in the code below (top, right, bottom, left) . So keep 2 of the 4 at 0%
You can use decimals so 1.1% is a good place to start
#top.tax-product_cat .shop_columns_3 .products .product {
margin: 0% 1% 1% 0%;
}Thanks,
Nick
May 24, 2013 at 7:03 am #120850In reply to: Left Sidebar Menu & Footer
Hi again,
“Display Sidebar Navigation” is already selected. If you visit the links you will understand what I mean
This is original theme example – http://kriesi.at/themes/enfold/pages/
This is my example – http://bilgin-group.com/blgn-grp-test/?page_id=1456
They are not the same. As you can see the sytles are different. The sidebar menu link does not have underline on rollover and the color is different. But in my example it is not like that. And there are lots of widgets that I dont want. I have created a new sidebar but I could not be able to add something inside of it. Hope you understand what I mean.
Besides these questions can you please tell me how to change font size and character of the main navigation. I want to add a different font but the font selections are very limited in enfol/styling/general. Is it possible to add another fonts besides the dropdown menu fonts
May 24, 2013 at 4:31 am #120599In reply to: Background image
Hi,
You can use Media Queries to target the text on different screens.
@media only screen and (max-width: 767px) {
p.ls-s-1 {
position: absolute;
left: 50px !important;
font-size: 25px;
}
}Don’t remove the !important.
Regards,
Ismael
May 23, 2013 at 9:24 pm #120548In reply to: Background image problem
Hi,
Here are the media queries for the various device sizes. Please add it to your /css/custom.css file
@media only screen and (min-width: 768px) and (max-width: 989px) {
.main_color h3 {
font-size: 150%;
}}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.main_color h3 {
font-size: 150%;
}}
@media only screen and (max-width: 479px) {
.main_color h3 {
font-size: 80%;
font-weight:bold
}}Please use classes when you add html tags so this way they can be targeted by css. Invent the class names . So don’t add <div style=””> or <div> or <h3> .. Instead add <div style=”” class=”mydiv-1″> or <h3 class=”my-h3-class”> .. This way you can use css to target that specific tag. You need to do that on bottom of that page with read more , since you have same font problem there as well. Try to use ”em” when you define font sizes and not pixels font-size: 1.1em; and not font-size:14px;
Thanks,
Nick
May 23, 2013 at 5:37 am #120776In reply to: Form Style Conflicts
Hi,
You can find all the form layout of the theme on css > base.css
/* #Forms
================================================== */
#top form {
margin-bottom: 20px; }
#top fieldset {
margin-bottom: 20px; }
#top .input-text,
#top input[type="text"],
#top input[type="input"],
#top input[type="password"],
#top input[type="email"],
#top input[type="number"],
#top input[type="url"],
#top input[type="tel"],
#top input[type="search"],
#top textarea,
#top select {
-webkit-appearance: none;
border: 1px solid #e1e1e1;
padding: 8px 6px;
outline: none;
font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
margin: 0;
width: 210px;
max-width: 100%;
display: block;
margin-bottom: 20px;
background: #fff;
-webkit-font-smoothing: antialiased;
border-radius: 0px;
}
#top input[type="text"]:focus,
#top input[type="password"]:focus,
#top input[type="email"]:focus,
#top input[type="number"]:focus,
#top input[type="url"]:focus,
#top input[type="tel"]:focus,
#top input[type="search"]:focus,
#top textarea:focus {
box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
color: #555;
}
#top textarea {
min-height: 60px; line-height:1.5em;}
#top label{
display: block;
font-weight: bold;
font-size: 12px; }
#top legend {
display: block;
font-weight: normal;
font-size: 15px; }
#top select {
width: 220px; }
#top input[type="checkbox"] {
display: inline; }
#top label span,
#top legend span {
font-weight: normal;
font-size: 13px;
color: #444; }
#top textarea{width:100%;}
#top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area{border:1px solid #9AA600;} /*#70A41B*/
#top #wrap_all .error .text_input, #top #wrap_all .error .text_area{border:1px solid #DF653E;}
#top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area{border:1px solid #ffb628;}You can remove or edit them to avoid conflict with other plugin style.
Regards,
Ismael
May 23, 2013 at 5:02 am #119936In reply to: Gravity Forms – Field Sizing
Hi,
You can find all of the theme’s form style on css > base.css
/* #Forms
================================================== */
#top form {
margin-bottom: 20px; }
#top fieldset {
margin-bottom: 20px; }
#top .input-text,
#top input[type="text"],
#top input[type="input"],
#top input[type="password"],
#top input[type="email"],
#top input[type="number"],
#top input[type="url"],
#top input[type="tel"],
#top input[type="search"],
#top textarea,
#top select {
-webkit-appearance: none;
border: 1px solid #e1e1e1;
padding: 8px 6px;
outline: none;
font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
margin: 0;
width: 210px;
max-width: 100%;
display: block;
margin-bottom: 20px;
background: #fff;
-webkit-font-smoothing: antialiased;
border-radius: 0px;
}
#top input[type="text"]:focus,
#top input[type="password"]:focus,
#top input[type="email"]:focus,
#top input[type="number"]:focus,
#top input[type="url"]:focus,
#top input[type="tel"]:focus,
#top input[type="search"]:focus,
#top textarea:focus {
box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
color: #555;
}
#top textarea {
min-height: 60px; line-height:1.5em;}
#top label{
display: block;
font-weight: bold;
font-size: 12px; }
#top legend {
display: block;
font-weight: normal;
font-size: 15px; }
#top select {
width: 220px; }
#top input[type="checkbox"] {
display: inline; }
#top label span,
#top legend span {
font-weight: normal;
font-size: 13px;
color: #444; }
#top textarea{width:100%;}
#top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area{border:1px solid #9AA600;} /*#70A41B*/
#top #wrap_all .error .text_input, #top #wrap_all .error .text_area{border:1px solid #DF653E;}
#top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area{border:1px solid #ffb628;}I think this part of the style is the one preventing you from defining input width
#top .input-text,
#top input[type="text"],
#top input[type="input"],
#top input[type="password"],
#top input[type="email"],
#top input[type="number"],
#top input[type="url"],
#top input[type="tel"],
#top input[type="search"],
#top textarea,
#top select {
-webkit-appearance: none;
border: 1px solid #e1e1e1;
padding: 8px 6px;
outline: none;
font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
margin: 0;
width: 210px;
max-width: 100%;
display: block;
margin-bottom: 20px;
background: #fff;
-webkit-font-smoothing: antialiased;
border-radius: 0px;
}The width is set to 210px.
Regards,
Ismael
Hi,
You can find all of the form styles on base.css
/* #Forms
================================================== */
#top form {
margin-bottom: 20px; }
#top fieldset {
margin-bottom: 20px; }
#top .input-text,
#top input[type="text"],
#top input[type="input"],
#top input[type="password"],
#top input[type="email"],
#top input[type="number"],
#top input[type="url"],
#top input[type="tel"],
#top input[type="search"],
#top textarea,
#top select {
-webkit-appearance: none;
border: 1px solid #e1e1e1;
padding: 8px 6px;
outline: none;
font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
margin: 0;
width: 210px;
max-width: 100%;
display: block;
margin-bottom: 20px;
background: #fff;
-webkit-font-smoothing: antialiased;
border-radius: 0px;
}
#top input[type="text"]:focus,
#top input[type="password"]:focus,
#top input[type="email"]:focus,
#top input[type="number"]:focus,
#top input[type="url"]:focus,
#top input[type="tel"]:focus,
#top input[type="search"]:focus,
#top textarea:focus {
box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
color: #555;
}
#top textarea {
min-height: 60px; line-height:1.5em;}
#top label{
display: block;
font-weight: bold;
font-size: 12px; }
#top legend {
display: block;
font-weight: normal;
font-size: 15px; }
#top select {
width: 220px; }
#top input[type="checkbox"] {
display: inline; }
#top label span,
#top legend span {
font-weight: normal;
font-size: 13px;
color: #444; }
#top textarea{width:100%;}
#top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area{border:1px solid #9AA600;} /*#70A41B*/
#top #wrap_all .error .text_input, #top #wrap_all .error .text_area{border:1px solid #DF653E;}
#top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area{border:1px solid #ffb628;}The review button on my end is white and it is crystal clear. Can you give us a link to your website?
Cheers,
Ismael
May 23, 2013 at 2:27 am #120738In reply to: Rollover disc arrow replacement
Hi,
Open css > base.css and find this line of codes
.image-overlay{position: absolute; background: #fff; z-index: 500;}
.image-overlay .image-overlay-inside{height:100%; width:100%; position: absolute; left:0; top:0;}
.image-overlay .image-overlay-inside::before{position: absolute; border-radius: 50px; background: #000; height:80px; width:80px; line-height:80px; left:50%; top:50%; margin: -40px 0 0 -40px; z-index: 500; text-align: center; color:#fff;}
.image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}
#top .hide-inner-overlay .image-overlay-inside{display: none;}You can change the fontello symbols on these lines.
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}Something like this
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E714";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"E714";}Please refer to this link for more entypo fontello symbols.
http://www.entypo.com/characters/
Cheers,
Ismael
May 22, 2013 at 7:58 am #118867In reply to: Font size questions
-
AuthorSearch Results
-
Search Results
-
Topic: Calculate font sizes
I need to change some of the font sizes which I did in the CSS field of the themes options and basically that´s fine. But I simply entered pixel dimensions whilst enfold uses both px/em values.
What I don´t get is how you calculated those values. For example for the body Enfolds defaul CSS says
font: 13px/1.65em
The reset sets the default size to 100% which is normally 16px. 13px would then equal 0.813em and not 1.65em. I´m sure I´m missing something but I don´t get what.
Cheers
Michael
I am trying to add a button shortcode to a layer inside the LayerSlider. It will not render the button, it just displays the shortcode.
[av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
Hi,
I want to make all the text (headers, paragraphs, etc) in my site larger. I created a style.css and played with changed the p, h1, and body tags but changes don’t show up. Do I have the style sheet attached incorrectly? Any tips about the responsive nature of fonts. I see you have the body set for px and em. Not sure if there is a magic formula for changing these two numbers. Thanks!
I created a child theme and put this in the css:
/*
Theme Name: Enfold Child
Theme URI: http://example.com/
Description: Child theme for Enfold
Author: Paige Gamet
Author URI: http://example.com/about/
Template: enfold
Version: 0.1.0
*/
@import url(“../enfold/style.css”);
body {font: 24px/1.9em }
p {font-size: 30px;}
h1 { font-size: 120x; line-height: 2.1em; margin-bottom: 20px;}
h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
h5 { font-size: 16px; line-height: 1.1em; } /*17*/
h6 { font-size: 14px; line-height: 1.1em; }
.main_menu .menu li a strong {
font-size: 25px;
}
Hi,
I would like the paragraph font size to be slightly larger. How do I set the default paragraph font size to something different?
Thanks
