Viewing 30 results - 17,821 through 17,850 (of 18,745 total)
  • Author
    Search Results
  • #191307

    In reply to: Menu descriptions

    Hey COLORIT!

    You need to add the walker menu. Please hire someone to modify wp_nav_menu and add the walker feature. You can also try this:

    Add this on your functions.php:

    class My_Walker extends Walker_Nav_Menu
    {
    	function start_el(&$output, $item, $depth, $args) {
    		global $wp_query;
    		$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
    
    		$class_names = $value = '';
    
    		$classes = empty( $item->classes ) ? array() : (array) $item->classes;
    
    		$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
    		$class_names = ' class="' . esc_attr( $class_names ) . '"';
    
    		$output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';
    
    		$attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
    		$attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
    		$attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
    		$attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
    
    		$item_output = $args->before;
    		$item_output .= '<a'. $attributes .'>';
    		$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
    		$item_output .= '<span class="walker-sub">' . $item->description . '</span>';
    		$item_output .= '</a>';
    		$item_output .= $args->after;
    
    		$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    	}
    }

    Go to Quick CSS, add this code:

    .walker-sub {
    	display: block;
    	position: absolute;
    	top: 70px;
    	min-width: 90px;
    	font-size: 10px;
    	color: gray;
    	line-height: 12px;
    }

    Edit includes/helper-main-menu.php, find this code on line 167:

     echo "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
                                    $avia_theme_location = 'avia';
                                    $avia_menu_class = $avia_theme_location . '-menu';
                                    $args = array(
                                        'theme_location'	=> $avia_theme_location,
                                        'menu_id' 			=> $avia_menu_class,
                                        'container_class'	=> $avia_menu_class,
                                        'fallback_cb' 		=> 'avia_fallback_menu',
                                        'walker' 			=> new avia_responsive_mega_menu()
                                    );

    Replace it with:

    
    echo "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
                                    $avia_theme_location = 'avia';
    								$walker = new My_Walker;
                                    $avia_menu_class = $avia_theme_location . '-menu';
                                    $args = array(
                                        'theme_location'	=> $avia_theme_location,
                                        'menu_id' 			=> $avia_menu_class,
                                        'container_class'	=> $avia_menu_class,
                                        'fallback_cb' 		=> 'avia_fallback_menu',
                                        'walker' 			=> $walker
                                    );

    Best regards,
    Ismael

    • This reply was modified 11 years ago by Josue.
    #191296

    Hi Indiatravelz!

    You can find the css style of the Tab element on css > shortcodes.css:

    #top .tabcontainer{
    background: transparent;
    }
    
    .tabcontainer{
    margin: 30px 0;
    position: relative;
    width:100%;
    clear: both;
    overflow: hidden;
    background: transparent;
    }
    
    .tab_titles{
    position: relative;
    width:100%;
    clear: both;
    float:left;
    z-index: 5;
    }
    
    .widget .tabcontainer{
    margin-top:0px;
    }
    
    .js_active .tab_content{
    visibility: hidden;
    clear: both;
    padding: 10px 19px;
    overflow:auto;
    position: absolute;
    top:0;
    z-index: 0;
    left:120%;
    width:100%;
    }
    
    .js_active .tab{
    cursor:pointer;
    margin:0 -1px 0 0;
    display: block;
    float: left;
    z-index: 2;
    position: relative;
    padding:12px 16px;
    top:1px;
    font-size: 11px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-style: solid;
    border-width:1px;
    }
    
    .js_active .top_tab .tab{
    border-bottom: none;
    padding:12px 16px 14px 16px;
    }
    
    .js_active .active_tab{
    z-index: 4;
    position: relative;
    font-weight: bold;
    }
    
    .js_active .tab_titles .tab:first-child{
    border-top-left-radius:  2px;
    }
    
    .js_active .tab_titles .tab:last-child{
    border-top-right-radius: 2px;
    }
    
    .js_active .active_tab_content{
    display: block;
    visibility: visible;
    z-index: 3;
    position: relative;
    overflow:auto;
    border-style: solid;
    border-width:1px;
    border-radius: 2px;
    left:0;
    width:auto;
    }
    
    .tabcontainer .tab_icon{
    margin-right: 7px;
    font-size: 13px;
    }
    
    .tab_inner_content{
    margin: 11px 0;
    left:-200%;
    position: relative;
    }
    
    .active_tab_content .tab_inner_content{
    left:0;
    position: relative;
    }

    Can you please post a screenshot of what you’re trying to do?

    Best regards,
    Ismael

    #191273

    In reply to: Transparent MegaMenu

    still no luck. also, how can i change font size within the mega menu?

    #191254

    Hey Jorge!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (min-width: 481px) and (max-width: 989px) { .social_header .phone-info { font-size: 14px; }}
    @media only screen and (min-width: 481px) and (max-width: 767px) { .sub_menu { line-height: 18px; }}
    @media only screen and (max-width: 480px) { .sub_menu { line-height: 16px; font-size: 12px; }
    .social_header .phone-info { font-size: 11px; }}

    Cheers!
    Yigit

    #191234

    Hi!

    Looks like you’ve already managed the megamenu issue.

    Regarding the GA push link, you can use the raw HTML version of a [button] wherever you want to have it:

    <a onclick="_gaq.push(['_trackEvent', 'Purchase', 'Banner', 'Bla']);" href="#" class="avia-button avia-icon_select-yes avia-color-theme-color avia-size-small avia-position-center "><span class="avia_button_icon" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">Click me</span></a>
    

    Regards,
    Josue

    #191206

    Topic: CSS customize

    in forum Enfold
    Viramedia
    Participant

    Sorry if this is a very stupid question, but Im absolutely WP beginner…
    I purchased Avada & Enfold Theme and find Enfold with its Template Builder extremely nice… But when it comes down to customize the CSS, Avada has much simpler features… for example in Enfold I can only change the body font… but not the sizes for each paragraph…

    I know CSS is almost basic stuff, but wouln’t it be nice if you could add this feature in the Enfold backend… would be more logical instead of changing CSS parts even in enfold backend & in CSS and make everything much simpler…

    thanks a lot

    #191113

    In reply to: Enfold Questions

    Thank you!

    1. How do i get to here, in order to make those changes?:

    css>custom.css file (in the theme files)

    2. How do i get to the location to make this change:

    body {
    font-size: 12px;
    }

    #191057

    Hey Mkieling!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired

    body, p { font-size: 16px; color: #e1e1e1; }

    Cheers!
    Yigit

    #191013

    In reply to: Enfold Questions

    Hey dawsmik!

    Let me see if I can answer all of these in one go:

    How do you center the logo from top to bottom?
    This should be automatically done depending on the header. You can add a bit more whitespace to the upper or lower part of your logo if you want to adjust it manually.

    How do you make the header area smaller from top to bottom?
    In your css>custom.css file (in the theme files) add the following inside of the desktop only media query we’ve included in the file:

    #header_main .container, .main_menu ul:first-child > li a {
    height: 88px !important;
    line-height: 88px !important;
    }

    And adjust the 88px value to a lower number as needed. Just make sure they are both the same.

    How do you make the pages standard width (960 pixels)
    The only option for that width is to make the theme not responsive in the theme options General Settings.

    How do you make the header font bigger?
    Which header font specifically? There are a lot of headers being used for various things throughout a typical installation.

    How do you bring the header menu closer to the middle?
    The header menu is already centered vertically in the menu so I’m not sure what you mean.

    How do you keep the socket from expanding? (it is several inches thick when the browser is at max width)
    http://www.sellmydigs.com/

    I think what you are looking for is a sticky footer which the theme doesn’t have. If the page content isn’t tall enough then the socket background will show the remainder of the sapce.

    What is the easiest way to get this layout? (just the content part below the header)

    http://www.conversion-rate-experts.com/questions/

    You can use a regular page with a sidebar.

    How do you make the primary font size 12 have still have it shrink on smaller screens?
    I’m not sure what you mean. The regular body font is set at 13px right now but you could change that with:

    body {
    font-size: 12px;
    }

    How do you change the color of the icons?
    There isn’t currently an option to change them individually. They inherit the color from the main color you set in the theme options.

    How do i remove the “Enfold theme by kriesi” from the socket?
    You can add [nolink] into the copyright field in the footer options.

    Regards,
    Devin

    #190978

    Okay, I have tried to enter the small code and also tried to change to font size from 10 to 40 but nothing happens to the font on the site.

    You can have a look at the live test site here: http://www.3loptest.dk

    It is just a test site where I try a few things out.

    #190819
    Mkieling
    Participant

    Dear support friends,

    I’d like to know how I can increase font size for text all over the website, but specially on the blog. I find the font that came installed too small for comfortable reading. And I’d also like to make it a little darker. The shade of gray currently used is a bit too light for my taste.

    So, how would I be able to do that, if I may ask for your support.

    The font size I like is actually used in Kriesi’s own site. Please see below.

    http://kriesi.at/archives/enfold-version-2-3-say-hello-to-our-new-iconfont-uploader

    Many thanks,

    Miguel Kaplan

    #190785

    Hey Eran!

    Where do you want to add that tracking link?

    Regarding the mega-menu coloring, it’s because you have this on the Quick CSS:

    .header_color .main_menu ul:first-child > li > a {
    color: black!important;
    font-weight: normal;
    font-size: 16px;
    }

    Cheers!
    Josue

    #190780

    Ah, yes, you are right. Silly me! Thanks again!

    #190774

    Hi!

    It does seem to be working on my end http://i.imgur.com/5UsMA3v.jpg it is 28px
    Please flush browser cache and refresh your page a few times

    Regards,
    Yigit

    #190771

    Thanks Yigit! That worked on the Blog page, although not on the individual posts themselves. How would I go about changing those?

    i.e. – http://www.olympicweightliftingguru.com/2013/11/11/how-to-fix-your-snatch-pt-1/

    Thanks!

    Taylor

    #190637

    In reply to: Editing a Template

    Your a life safer, Devin! That got it!
    How would I center that text? The following doesn’t seem to work?

    .av-special-heading-h3 h3{
    font-size:25px;
    font-family:’Sorts Mill Goudy’;
    font-style:italic;
    color:#a7652b;
    text-align:center;
    font-weight:200;
    word-spacing:2px;
    }

    #190621

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .page-id-8570 .pricing-table-wrap { display: table-header-group; }
    .page-id-8570 .avia-table { margin: 0; }
    .page-id-8570 .pricing-table li.avia-pricing-row { font-size: 19px; }

    It should look like this after changes http://i.imgur.com/eaXfOnB.jpg

    Cheers!
    Yigit

    #190589

    Hey sappermarine!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired

    .entry-content-wrapper .post-title { font-size: 28px; }

    Cheers!
    Yigit

    #190456
    sappermarine
    Participant

    Hi there, how do I increase the font size of the post titles? Is it in quick CSS?

    http://www.olympicweightliftingguru.com/2013/11/11/how-to-fix-your-snatch-pt-1/

    Thanks,

    Taylor

    #190444

    Topic: Enfold Questions

    in forum Enfold
    dawsmik
    Participant

    How do you center the logo from top to bottom?

    How do you make the header area smaller from top to bottom?

    How do you make the pages standard width (960 pixels)

    How do you make the header font bigger?

    How do you bring the header menu closer to the middle?

    How do you keep the socket from expanding? (it is several inches thick when the browser is at max width)
    http://www.sellmydigs.com/

    What is the easiest way to get this layout? (just the content part below the header)
    http://www.conversion-rate-experts.com/questions/

    How do you make the primary font size 12 have still have it shrink on smaller screens?

    How do you change the color of the icons?

    How do i remove the “Enfold theme by kriesi” from the socket?

    website is sellmydigs.com if you would like to see it.

    #190436
    jmorillo
    Participant

    Hello:

    2 issues:
    1.- I set the blog posts carrousel to tittle, excerpt and read more and it’s not displaying the excerpt:
    http://prepro.paadonline.org/innovaciones/?preview=true&preview_id=579&preview_nonce=ef4da058be
    2.-CSS to change the font size in the widget for highlighted woocomerce products? I can’t target it with chrome.

    Many Thanks
    Jorge

    #190381

    Hi Ismael,

    I have added a lot of custom CSS from Yigit. I will add it all below as I am unsure which bits you need.

    .sub_menu { top: 390%; }
    .header-scrolled .sub_menu { top: 270%; }
    .page-id-2528 .sub_menu li { padding: 0 50px; top: 30px; font-size: 12px; }
    .page-id-2736 .sub_menu li { padding: 0 50px; top: 30px; font-size: 12px; }
    .page-id-2609 .sub_menu li { padding: 0 50px; top: 30px; font-size: 12px; }
    .page-id-2605 .sub_menu li { padding: 0 50px; top: 30px; font-size: 12px; }
    .page-id-2625 .sub_menu li { padding: 0 50px; top: 30px; font-size: 12px; }
    .page-id-2621 .sub_menu li { padding: 0 50px; top: 30px; font-size: 12px; }
    .page-id-734 .sub_menu li { display: none; }
    .page-id-1277 .sub_menu li { display: none; }
    .page-id-1122 .sub_menu li { display: none; }
    .page-id-1224 .sub_menu li { display: none; }
    .page-id-1167 .sub_menu li { display: none; }
    #top div .enfold-gallery img {
    padding: 0;
    border: none;
    }
    .responsive #header .sub_menu { position: absolute; }

    .page-id-2528 .sub_menu li { padding: 0 44px; }
    .page-id-2736 .sub_menu li { padding: 0 44px; }
    .page-id-2609 .sub_menu li { padding: 0 44px; }
    .page-id-2605 .sub_menu li { padding: 0 44px; }
    .page-id-2625 .sub_menu li { padding: 0 44px; }
    .page-id-2621 .sub_menu li { padding: 0 44px; }

    @media only screen and (max-width: 480px) {
    .page-id-2528 .sub_menu li { padding: 0 5px; }
    .content { padding-top: 90px; } }
    @media only screen and (max-width: 480px) {
    .page-id-2736 .sub_menu li { padding: 0 5px; }
    .content { padding-top: 90px; } }
    @media only screen and (max-width: 480px) {
    .page-id-2609 .sub_menu li { padding: 0 5px; }
    .content { padding-top: 90px; } }
    @media only screen and (max-width: 480px) {
    .page-id-2605 .sub_menu li { padding: 0 5px; }
    .content { padding-top: 90px; } }
    @media only screen and (max-width: 480px) {
    .page-id-2625 .sub_menu li { padding: 0 5px; }
    .content { padding-top: 90px; } }
    @media only screen and (max-width: 480px) {
    .page-id-2621 .sub_menu li { padding: 0 5px; }
    .content { padding-top: 90px; } }
    @media only screen and (max-width: 480px) {
    .page-id-2528 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    @media only screen and (max-width: 480px) {
    .page-id-2736 .sub_menu, .page-id-999 .sub_menu, .page-id-9989 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    @media only screen and (max-width: 480px) {
    .page-id-2621 .sub_menu, .page-id-999 .sub_menu, .page-id-9989 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    @media only screen and (max-width: 480px) {
    .page-id-2736 .sub_menu, .page-id-999 .sub_menu, .page-id-9989 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    @media only screen and (max-width: 480px) {
    .page-id-2625 .sub_menu, .page-id-999 .sub_menu, .page-id-9989 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    @media only screen and (max-width: 480px) {
    .page-id-2609 .sub_menu, .page-id-999 .sub_menu, .page-id-9989 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    @media only screen and (max-width: 480px) {
    .page-id-2605 .sub_menu, .page-id-999 .sub_menu, .page-id-9989 .sub_menu { display: block; }
    .sub_menu { display: none; } }

    #190357

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1

    #mobile-advanced a { font-size: 15px; }
    #mobile-advanced li > a { border-color: #e1e1e1; }

    Best regards,
    Yigit

    #190349

    Hi!

    Please replace the code i posted previously with following one

    .header_color .main_menu ul:first-child > li > a { font-size: 18px!important; color: red!important; background-color: green!important; }
    .header_color .main_menu ul:first-child > li > a:hover { color: orange!important; }
    .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a { color: blue!important; }

    Flush browser cache after applying the code and refresh your page a few times. If that does not work, please try adding the code to Custom.css file inside Enfold/css folder

    Regards,
    Yigit

    #190300

    Thank you Ismael, but I was unspecific in my question, so I’m hoping you can provide a little more help.
    I did locate the Styling that defines the font, but if I set it to Open Sans as you suggest, I still see several differences between my responsive menu and the one you use:

    http://avatron.com/images/test/yourMenu-v-myMenu.png

    Specifically:
    1) how may I change the font size in the responsive menu (yours looks at least 1 point bigger to me)
    2) how may I add the horizontal rules between menu items

    Thanks again. Both of us working on our website overhaul are so impressed with the Enfold theme and the quality and speed of your support team.

    #190092

    Hi!

    You can add this on your custom.css or Quick CSS:

    .title_container .main-title {
    font-size: 16px;
    line-height: 2.3em;
    font-weight: 400;
    }

    Are you talking about the headline on the title container?

    Best regards,
    Ismael

    Hey dejatobin!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top .main_menu .menu li ul a { font-size: 13px; }

    If you want to apply the same font weight, please add following code as well

    #top .main_menu .menu li ul a { font-weight: 600; }

    Best regards,
    Yigit

    #189927

    Hi mhiller!

    Please try adding following code to Quick CSS as well

    @media only screen and (max-width: 480px) { .template-page .entry-content-wrapper h1 { font-size: 24px; }}

    Best regards,
    Yigit

    dejatobin
    Participant

    How to change the font size of the mega menu dropdown items and also of the regular dropdown menu items so that it has the same font size as the main menu items

    please advice.

    thanks
    Desch

    • This topic was modified 12 years, 5 months ago by dejatobin.
    #189821
    mhiller
    Participant

    I have a problem with H1 Headings sizing to a smaller font size and aligning properly in responsive mode. My website is here: http://www.nexuscontentlab.com.

    I added the CSS below from this post (https://kriesi.at/support/topic/responsive-headings) to my CSS:

    @media only screen and (max-width: 480px) {
     .responsive .container { width: 300px; }}
    @media only screen and (max-width: 480px) {
     .av-special-heading h1 { font-size: 24px !important; }}
    @media only screen and (max-width: 480px) { 
    .entry-content-wrapper .post-title { font-size: 24px !important; }}

    I also included this code in my CSS so that the H1 Headers are not “all caps.”

    text-transform: none !important;

    With the CSS above, the fonts do not re-size and the header does not realign (the top words the header are not visible). When I remove the “text-transform” value, the H1 Headers go to all caps and align properly in responsive, but the font size does not change in the smaller screen size.

    Please recommend CSS that removes H1 “all caps”, but also re-sizes fonts and aligns H1 header in responsive mode. Thanks! Mike.

Viewing 30 results - 17,821 through 17,850 (of 18,745 total)