-
AuthorSearch Results
-
October 25, 2013 at 7:02 pm #180770
Topic: increased font size?
in forum Enfoldsaundra
ParticipantIs there an easy css you could give me to increase the font size (overall) for this theme. It’s sooooo tiny. Please? This would be for typical (paragraph) font.
Also, do you have a font that is uploaded that is close to what Apple uses or Pinterest? Just talking about the style.
New to the theme, still working through but it’s lovely. Thank you.
October 25, 2013 at 12:07 pm #180607Topic: Mobile Menu not showing on ipad
in forum EnfoldRevolutionGroup
ParticipantHi
I have updated to the latest version and I am no longer seeing the drop down menu on the ipad.
I have pasted all my custom CSS below just in case something is blocking it although I don’t think it should be:
@media only screen and (max-width: 801px) { .flex_column.av_one_fifth, .flex_column.av_one_fifth, .flex_column.av_one_fourth, .flex_column.av_one_third, .flex_column.av_two_fifth, .flex_column.av_one_half, .flex_column.av_three_fifth, .flex_column.av_two_third, .flex_column.av_three_fourth, .flex_column.av_four_fifth, .flex_column.av_one_sixth, .flex_column.av_one_seventh, .flex_column.av_one_eighth, .flex_column.av_one_nineth, .flex_column.av_one_tenth{
width: 100%;
margin-left: 0px;
}
}.page-id-2372 .av_three_fourth { width: 78.5%; }
.responsive .logo img { height: 74px; }
.related_posts { display: none; }
.tribe-events-list-widget ol { margin-left: 0px }
.pricing-table li{
border: 0!important
}.avia-promocontent { padding-right: 25px; }
#top .iconbox_top { padding-bottom: 35px; }
.iconbox_top .iconbox_content { box-shadow: none; border: 1px solid #f1f1f1; }
.logo img{
position: relative;
top: 10px;
}.social_header .phone-info {
color: #014073;
font-size: 1.5em;
}.main_menu ul:first-child>li>a {
font-size: 16px;
}#top .main_menu .menu li ul a{
line-height:23px;
padding:8px 15px;
font-size: 14px;
min-height: 23px;
}.title_container .main-title {
font-size: 18px;
position: relative;
min-height: 36px;
font-weight: 600;
}#header_main .container, .main_menu ul:first-child > li > a {
height: 120px !important;
line-height: 120px !important;
}h2.post-title {
color: #014073;
}#top .template-blog h1.post-title, #top .template-blog h1.post-title a {
color: #014073;
}#wp-calendar {
width: 99%
}#footer .widgettitle {
color: #ffffff;
font-size: 20px;
}@media only screen and (max-width: 767px) {
.responsive #header .social_bookmarks {
margin-bottom: 10px;
}
}.news-excerpt p {
text-align: justify;
}h2{
text-transform: none !important;
font-size: 24px;
letter-spacing:0px !important;
}.widgettitle {
text-transform:capitalize;
letter-spacing:0px !important;
font-size: 16px;
}.main_menu ul:first-child > li.current-menu-item > a, .main_menu ul:first-child > li.current_page_item > a {font-weight: 800;}
.main_color .sidebar .current_page_item>a {color:#000000; font-weight:bold;}
.current_page_item>a {font-weight:400;}.sidebar li a {
color: #4C4646 !important;
}#top .widgettitle label {
font-size: 16px!important;
}@media screen and (max-width: 767px) {
#top .social_bookmarks { display: none; }
.header_color .container_wrap_meta { padding-top: 10px; } }@media only screen and (max-width: 1279px) and (min-width: 769px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 6px;
font-size: 13px;
}
}@media only screen and (max-width: 1365px) and (min-width: 1280px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 10px;
font-size: 15.5px;
}
}.avia-icon-list .iconlist_icon {
background-color: #014073 !important;
}#top .main_color .avia-color-theme-color {
color: white;
font-weight:bold;
}Here is a link to my website with the ipad view: http://tinyurl.com/p69chqp
Thanks,
RobOctober 25, 2013 at 10:59 am #180573Hi!
You can try following code instead
html[lang="fr-FR"] p{ font-size: 14px; }If it still doesn’t work you can use the code from here: http://wpml.org/forums/topic/body-class-based-on-language/#post-18785 (insert it into the functions.php theme file) to add the language shortcode to the body classes. Afterwards you shoud be able to style your website with
body.fr_FR p{ font-size: 14px; }Regards,
PeterOctober 25, 2013 at 6:27 am #180497Hey midischool!
Can you please post a screenshot of the button that you want? You can style the submit button using this selector on Quick CSS:
.main_color input[type='submit'] { background-color: #c05f5f; color: #ffffff; border-color: #a03d3d; } .avia_ajax_form .button { margin: 0; padding: 16px 50px; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 12px; } input[type="submit"], #submit, .button { padding: 9px 22px; cursor: pointer; border: none; -webkit-appearance: none; border-radius: 0px; }Cheers!
IsmaelOctober 24, 2013 at 9:56 pm #180397Hey corly!
Write it in plain HTML, assign it a class:
<h2 class="smaller-heading">My h2 heading</h2>Then add this rule to the Quick CSS:
.smaller-heading{ font-size:14px !important; }Cheers!
JosueOctober 24, 2013 at 9:45 pm #180394Hey Pat!
I meant that you can add that prefix to any CSS rule and that will only be applied to the french version of the site.
Example:
html[lang='fr'] p{ font-size: 14px; } html[lang='fr'] h2{ color:red; }Regards,
JosueOctober 24, 2013 at 9:08 pm #180380In reply to: Header/Site Map Font Color and size
Hi!
Please add following code to Quick CSS as well to increase main menu font size
.main_menu ul:first-child > li > a { font-size: 16px; }and for breadcrumb non-active elements
.alternate_color .breadcrumb a { color: red; }Regards,
YigitOctober 24, 2013 at 7:14 pm #180349corly
ParticipantHi, how can I change a H4 heading to H2 without making the font size bigger (for SEO)?
October 24, 2013 at 6:01 pm #180337In reply to: Header/Site Map Font Color and size
Also whats the code to adjust the menu font size
October 24, 2013 at 5:59 pm #180335In reply to: Header/Site Map Font Color and size
I see where it changed on the right but not on the left side
October 24, 2013 at 4:31 pm #180290In reply to: Header text size
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
.main_menu ul:first-child > li > a { font-size: 16px!important; }Best regards,
YigitOctober 24, 2013 at 4:06 pm #180276In reply to: Header/Site Map Font Color and size
Hey jdthedj!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
.title_container .breadcrumb { font-size: 15px; color: red!important; }Cheers!
YigitOctober 24, 2013 at 12:54 pm #180216In reply to: Enfold: EasySlider – two questions
Hi!
looks fine for me, both in windows and mac. No strange fonts, no nudging. Since I can’t see the issue I cant really offer any more assistance, the last thing I can think of is to apply a css rule that we used in an eariler version of enfold to fix similar problems, maybe it also fixes this one:
.avia_textblock, .avia-icon-list, .avia-button, .avia-testimonial, .iconbox, .avia_message_box, .avia-team-member, .widget, .post, .team-img-container img, .team-social, .iconlist_icon, .fallback-post-type-icon, .fullsize .related_posts, .grid-image, .avia-caption-content, .avia-caption-title, .entry-content-wrapper, .avia_start_animation { -webkit-perspective: 1000; -webkit-backface-visibility: hidden; }let me know if that helps. its a shot in the dark based on experience but not sure what else I can do if I can’t see the issue anymore :/
Regards,
KriesiOctober 24, 2013 at 4:08 am #180050In reply to: Easy Slider – mobile rendering issue
Hi Mary!
Can you please give us a link to the actual website? We can resize the caption via Media Queries only for mobile device.
@media only screen and (max-width: 767px) { .avia-caption-title { font-size: 13px; } .avia-caption-content p { font-size: 11px; } }Regards,
IsmaelOctober 24, 2013 at 3:26 am #180037Topic: Header/Site Map Font Color and size
in forum Enfoldjdthedj
ParticipantIs there a way that we can make the text that shows users where they are on the site a black and or change their size?
October 24, 2013 at 3:05 am #180032In reply to: Resize Tabs
Hey kenwae!
Add this to the Quick CSS:
.tab_titles { width: 999px; } .tabcontainer * { font-size: 13px !important; } .tabcontainer table br{ display: none; }Result:

Cheers!
JosueOctober 24, 2013 at 12:40 am #180005where should this class tag go in this button shortcode, yigit?
[av_button label='Download hi-rez' link='manually,http://www.costcat.com/wp-content/uploads/2013/10/langers-102313.jpg' link_target='_blank' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='large' position='center' icon_select='yes' icon='ue887' font='entypo-fontello']i don’t see any place that has a traditional a href tag at all.
October 23, 2013 at 9:46 pm #179957In reply to: Menu type size and colour
Hey smithds!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
.main_menu ul:first-child > li > a { font-size: 15px; color: white!important; } .main_color.iconbox_top .iconbox_icon { background-color: green; color: red; border-color: blue; }Cheers!
YigitOctober 23, 2013 at 7:28 pm #179881Topic: Menu type size and colour
in forum Enfoldsmithds
ParticipantForgive me if this is elsewhere as I couldn’t see it.
I need to increase the size of the menu type. I spotted this code for another theme and applied it to quick.css but didn’t seem to make any difference.
#menu_container a {
font-size: 18px !important;
}Also the non active menu headings appear to be about 80% opacity how do I make them 100% white the same as the selected menu item? Tried editing the colours but with no results.
Finally for now. Is there any way to change the colour of the header and icon in the iconbox?
New to this theme as you may of noticed.
October 23, 2013 at 3:27 pm #179720In reply to: Social Icons into a text-widget ?
Hi Bruno!
Here you go. Facebook icon goes to Google when click opens in new window and in default color.
[av_font_icon color="" font="entypo-fontello" icon="ue8f3" size="40px" position="left" link="manually,http://www.google.com" linktarget="_blank"]You can simply switch to Default Editor then add and copy shortcodes http://i.imgur.com/XseeK9n.jpg
Cheers!
YigitOctober 23, 2013 at 11:29 am #179607In reply to: Socket menu in footer instead of socket
This reply has been marked as private.October 23, 2013 at 6:51 am #179500In reply to: Socket menu in footer instead of socket
Hey!
Please add this on your custom.css or Quick CSS:
#footer .widget_nav_menu li { position: relative; margin: 0; clear: none; float: left; display: block; font-size: 11px; border-right: 1px solid; padding: 0 10px 0 10px; height: 20px; } #footer .widget_nav_menu li a { position: relative; top: -5px; } #footer .flex_column.av_one_fourth.first { width: 100%; }This will only work for one level menu group.
Regards,
IsmaelOctober 23, 2013 at 4:36 am #179441In reply to: responsive menu icon label
Ah ha! ;) Thanks — sorry about that! OK, after updating the theme, here’s what worked for me, in case anyone else needs it:
Once I added the word “MENU” in there, I didn’t want the menu icon anymore (I might have kept it, if I could’ve figured out how to move it to the right side of the “Menu” text, but I couldn’t ;). So, here’s what I ended up going with:
On line 80 of header.php, I swapped out:
echo ‘‘;
with:
echo ‘MENU‘;and added the following to my custom css editor:
#advanced_menu_toggle {
font-size: 18px;
width: 75px;
}Thanks again! You guys have been great!
October 23, 2013 at 1:17 am #179293Hey Steve!
Create the element with the Magic Wand button in Default Editor mode, copy the generated shortcode and paste it in your slider, the shortcode will look this:
[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='ue800' font='entypo-fontello']Best regards,
JosueOctober 22, 2013 at 2:17 pm #179077In reply to: Custom Bullet Image
Hi gintheme!
You can use the Text Block element > Visual Editor, add something like this:
[av_font_icon color="" font="entypo-fontello" icon="ue804" size="12px" position="left" link="" linktarget="no"]Click here to add your own text [av_font_icon color="" font="entypo-fontello" icon="ue804" size="12px" position="left" link="" linktarget="no"]Click here to add your own text [av_font_icon color="" font="entypo-fontello" icon="ue804" size="12px" position="left" link="" linktarget="no"]Click here to add your own textWe use the Font Icon shortcode on the shortcode wand.
Cheers!
IsmaelOctober 22, 2013 at 1:30 pm #179054In reply to: Spacing Between Tabs
Hello Yigit,
Thanks for the reply – still no joy, this is the complete code I am using (I have added some other adjustments to the tabs)
.tab {
font-size: 14px !important;
}.main_color .tabcontainer .active_tab {
background-color: #734854 !important;
color: white !important;
}.js_active .top_tab .tab { margin-right: 10px!important; }
October 22, 2013 at 12:44 pm #179022In reply to: responsive menu icon label
Hi sky19er!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#advanced_menu_toggle { width: 90px; } .togglem { font-size: 26px; }Then, in your WordPress theme directory go to Enfold folder and open Header.php file ( you can find it in Appearance > Editor as well ) and find this code in 80th line http://i.imgur.com/knP7clN.jpg and change it to http://i.imgur.com/a7FlTNh.jpg
You can use .togglem class to style Menu textBest regards,
YigitOctober 22, 2013 at 12:47 am #178763In reply to: Change size of drop caps
Hey pcastell!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
.av_dropcap1 { font-size: 50px; }Best regards,
YigitOctober 21, 2013 at 9:11 pm #178639Topic: Change size of drop caps
in forum Enfoldpcastell
ParticipantI changed my font size to 16 using the quick css suggestion I found in the forum. Now the drop-caps are too small [my website is http://www.movementsense.com] Can you give me quick css to fix this?
Thanks!October 21, 2013 at 8:46 am #178316In reply to: Quick CSS not working
Hi Josue and Yigit,
Thank you very much for your help. Everything is working and I’m very happy with the new font-size.
Kind regards,
Ronny -
AuthorSearch Results
-
Search Results
-
Topic: increased font size?
Is there an easy css you could give me to increase the font size (overall) for this theme. It’s sooooo tiny. Please? This would be for typical (paragraph) font.
Also, do you have a font that is uploaded that is close to what Apple uses or Pinterest? Just talking about the style.
New to the theme, still working through but it’s lovely. Thank you.
Hi, how can I change a H4 heading to H2 without making the font size bigger (for SEO)?
Topic: Menu type size and colour
Topic: Change size of drop caps
I changed my font size to 16 using the quick css suggestion I found in the forum. Now the drop-caps are too small [my website is http://www.movementsense.com] Can you give me quick css to fix this?
Thanks!
