Viewing 30 results - 6,931 through 6,960 (of 7,502 total)
  • Author
    Search Results
  • #204261

    Hi DavidMiles!

    1) Make a copy of /wp-content/themes/enfold/includes/loop-index.php and add it to the child theme folder (/wp-content/themes/enfold-child/includes/loop-index.php). Then open up the file and replace

    
    	echo "<article class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false)).">";
    
    

    with

    
    	echo "<article class='".implode(" ", get_post_class('post-entry post post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false)).">";
    
    

    2) Open up your single-report.php and search for

    
    $title  = __('Blog - Latest News', 'avia_framework'); //default blog title
    

    Replace “Blog – Latest News” with your custom text (i.e. post type name).

    Best regards,
    Peter

    jvines
    Participant

    In the default Enfold mode, paragraphs are far too close to each other, making text difficult to read and follow….

    On searching the forum I found the following code to insert into the Quick CSS:

    p {
    padding: 1.00em 0;
    }

    …which had the desired effect,

    Please see http://www.vinesdrive.com/about/ where the paragraphs are spaced nicely.

    However this has now effected every page, spacing large headings out so they look terrible.

    Please see http://www.vinesdrive.com/ to see how all the large text has now also been spread out, making it look unprofessional.

    Could you please advise how I could keep certain ‘proper’ paragraphs spaced as in the first link, but not have it affect everything?

    Many thanks

    Jason

    #204171

    I can ask Kriesi to chime in but the “blog” proper is a feed of posts. When you have something different than that it becomes a page.

    Because of the way templates are used with WordPress and the theme in general when you set the overall theme wide blog style its used for all of those auto created feeds like the search results, archives and the standard Blog feed which is the default index.php for WordPress. To keep the code clean the same loop gets used for each. If you wanted to customize the file that WordPress uses to show the blog feed you definitely can but its not typically what users want to do from the backend.

    There is a mechanism for customizing the “blog” page but it makes it so that WordPress doesn’t see the feed as the parent. So it *is* doable to have your posts shown with any other content on the page.

    #204144
    Monsoon
    Participant

    I wanted to try something and change the background of the search popup and tried to change its css attribute in the Custom.css…did not pick it. I tried in Layout, did not pick it. So I tried in the dashboard custom css section and that worked.

    I think the site dynamic css that is written in the uploads folder may be writing on top of the css in those other files. This means that you are kind of limited to the css colors you set in the theme’s tabs. In my testing I was trying to use:

    #top .header_color .input-text, #top .header_color input[type='text'], #top .header_color input[type='input'], #top .header_color input[type='password'], #top .header_color input[type='email'], #top .header_color input[type='number'], #top .header_color input[type='url'], #top .header_color input[type='tel'], #top .header_color input[type='search'], #top .header_color textarea, #top .header_color select {
    	border-color:#cccccc;
    	background-color: #ffffff;
    	color:#000;
    }

    because I had set the top backgrund to be dark the background for the search was dark as well.

    So I would like to know if there is a way to make the custom.css be the last css parsed so that the declarations in it are not overwriten by the custom one. The problem with relying on the custom css field is that anybody can destroy the site by erasing that section by mistake in pressing the wrong button (it happened, just like the import custom pages can screw up a website is an admin presses the wrong button) I always remove the admin section for importing dummy content because I don t trust other admins to not make a mistake but with the css one its more of a problem as there is no going back if you reset the styles.

    Anyway, which css is the last one to be picked up and could the next version fix the order and pick custom last please :)

    Thanks

    #204141

    In reply to: Mobile search

    I removed all the css that was in the quick css section of my child enfold.

    Also i have this code in my child theme files. This gave me the mobile search

    * to the enfold child’s functions.php file add

    add_filter('wp_nav_menu_items','add_search_box', 10, 2);function add_search_box($items, $args) {        ob_start();        get_search_form();        $searchform = ob_get_contents();        ob_end_clean();        $items .= '<li>' . $searchform . '</li>';    return $items;
    }
    
    add_action(‘ava_main_header’, ‘add_search_box’);

    * to the enfold child’s style.css file add

    @media only screen and (max-width: 767px) { //css code to display the form }

    #203632

    Hey nikolai!

    This is not easily possible. Basically you would need to remove all function calls of “avia_title()” from all theme templates (I did a quick search and found 18 occurrences in template files) and then you need to add the title output to the main content container (i.e. in /wp-content/themes/enfold/includes/loop-page.php or /wp-content/themes/enfold/includes/loop-portfolio-single.php). However you need to be very careful – otherwise you’ll break the theme. Depending on your coding skills I recommend to hire a freelancer for this job. The job should be doable with 1,5-2 hours of work.

    Cheers!
    Peter

    #203534

    Hey bitmatters!

    Open up wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\toggles.php and search for

    
                $output .= '        <p data-fake-id="#'.$toggle_atts['custom_id'].'" class="toggler '.$titleClass.'" '.$markup_title.'>'.$toggle_atts['title'].'<span class="toggle_icon">';
                $output .= '        <span class="vert_icon"></span><span class="hor_icon"></span></span></p>';
    

    Replace it with

    
                $output .= '        <h4 data-fake-id="#'.$toggle_atts['custom_id'].'" class="toggler '.$titleClass.'" '.$markup_title.'>'.$toggle_atts['title'].'<span class="toggle_icon">';
                $output .= '        <span class="vert_icon"></span><span class="hor_icon"></span></span></h4>';
    

    Regards,
    Peter

    #203176

    In reply to: Mobile search

    I tried that but no luck. This is what I originally had inside the enfold style section. I tried your code with this code and without.

    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu ul,  .responsive #header .main_menu ul {
    display: block !important;
    position: absolute;
    background: none;
    top: -20px;
    right: 0;
    }
    
    .responsive #header .main_menu ul li {
    display: none;
    }
    
    .responsive #header .main_menu ul li:last-child {
    display: block !important;
    }
    }

    Is there a recommendation I can try from scratch. I am also using a child theme and possibly my codes in there might be effecting it. I am willing to start that from scratch as well.

    #203155

    In reply to: Mobile search

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab to prevent logo from being cut on mobile

    @media only screen and (max-width: 480px) {
    .responsive .mobile_slide_out .logo img { width: 300px!important; }
    }

    Have you removed mobile menu manually?

    Best regards,
    Yigit

    ribanezg
    Participant

    Hello Enfold Team,

    When you make the portfolio searchable, category show up in alphabetic order.

    I have read another post talking about that:

    Open includes > loop-portfolio.php and find this code
    $args = array(
    ‘taxonomy’ => ‘portfolio_entries’,
    ‘hide_empty’=> 0,
    ‘include’ => $includeArray
    );

    Replace it with
    $args = array(
    ‘taxonomy’ => ‘portfolio_entries’,
    ‘hide_empty’=> 0,
    ‘include’ => $includeArray,
    ‘orderby’ => ‘name’,
    ‘order’ => ‘ASC’
    );

    But i can not find loop-portfolio.php, only someone else, loop-portfolio-single.php, but it has not this lines of data.

    Could you help me please?

    Thanks
    Raul.

    #202810

    Topic: Vendor Prefixes

    in forum Enfold
    Imburr
    Participant

    Just a note for future development- Modern.ie calls out some missing vendor prefixes with the enfolds code:

    p.demo_store	 linear-gradient	 69
    .cart-loading	 transform	 312
    .adding-to-cart-loading:hover .cart-loading	 transform	 312
    #top .added-to-cart-check .cart-loading	 transform	 312
    #top .added-to-cart-check:hover .cart-loading	 transform	 312
    .avia_cart_buttons	 -ms-perspective	 329
    .avia_cart_buttons	 perspective	 329
    .sort-param	 -ms-perspective	 446
    .sort-param	 perspective	 446
    .avia_transform .bbp-replies .bbp-reply-author::before, .avia_transform .forum-search .bbp-reply-author::before, .avia_transform .forum-search .bbp-topic-author::before	 -ms-transform	 1129
    
    pre	 -webkit-linear-gradient	 208
    .avia-arrow	 -ms-transform	 284
    .webkit_fix	 -ms-perspective	 662
    .webkit_fix	 perspective	 662
    .av_font_icon.av-icon-style-border .av-icon-char:after	 -ms-transform-style	 674
    .av_font_icon.av-icon-style-border .av-icon-char:after	 transform-style	 674
    .avia_transform .av_font_icon	 -ms-transform	 675
    .avia_transform .avia_start_delayed_animation.av_font_icon	 -ms-transform	 676
    .avia_transform .avia-icon-list .iconlist_icon	 -ms-transform	 695
    .avia_transform .avia-icon-list .avia_start_animation .iconlist_icon	 -ms-transform	 696
    #top .avia-content-slider, #top .avia-content-slider-inner, #top .avia-content-slider-inner .slide-entry-wrap	 -ms-transform-style	 832
    #top .avia-content-slider, #top .avia-content-slider-inner, #top .avia-content-slider-inner .slide-entry-wrap	 transform-style	 832
    .avia_desktop.csstransforms3d .av-masonry-entry	 -ms-perspective	 861
    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container	 -ms-transform	 863
    .avia_desktop.csstransforms3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content	 -ms-transform-origin	 863
    .avia_desktop.csstransforms3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content	 -ms-transform	 863
    .avia_desktop.csstransforms3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content	 -ms-transform-style	 863
    .avia_desktop.csstransforms3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content	 -ms-transform	 863
    .avia_desktop.csstransforms3d .av-masonry-entry:hover .av-icon-display	 -ms-transform	 863
    .avia_desktop.csstransforms3d .av-masonry-image-container	 -ms-perspective	 863
    .avia_desktop.csstransforms3d .av-masonry-image-container	 perspective	 863
    #top .av-masonry-entry.type-product .av-masonry-image-container	 -ms-transform	 869
    #top .av-masonry-entry:hover .av-icon-display.av-masonry-media	 -ms-transform	 871
    #top div .av-masonry-entry.format-quote:hover .av-icon-display	 -ms-transform	 871
    .avia_transform .avia-testimonial .avia-testimonial-image	 -ms-transform	 887
    .avia_transform .avia_start_animation.avia-testimonial .avia-testimonial-image	 -ms-transform	 887
    .grey-bar .bar	 -webkit-linear-gradient	 897
    .blue-bar .bar	 -webkit-linear-gradient	 898
    .green-bar .bar	 -webkit-linear-gradient	 899
    .orange-bar .bar	 -webkit-linear-gradient	 900
    .black-bar .bar	 -webkit-linear-gradient	 901
    .red-bar .bar	 -webkit-linear-gradient	 902
    .teal-bar .bar	 -webkit-linear-gradient	 903
    .aqua-bar .bar	 -webkit-linear-gradient	 904
    .purple-bar .bar	 -webkit-linear-gradient	 905
    .pink-bar .bar	 -webkit-linear-gradient	 906
    .silver-bar .bar	 -webkit-linear-gradient	 907
    .avia-slideshow-inner li	 -ms-transform-style	 938
    .avia-slideshow-inner li	 transform-style	 938
    .csstransitions .av_slideshow_full .avia-caption-content, .csstransitions .av_slideshow_full .avia-caption-title, .csstransitions .av_fullscreen .avia-caption-content, .csstransitions .av_fullscreen .avia-caption-title, .csstransitions .av_fullscreen .avia-slideshow-button	 -ms-transform	 955
    .mejs-controls .mejs-time-rail .mejs-time-buffering	 -webkit-linear-gradient	 1183
    .mejs-controls .mejs-time-rail .mejs-time-current	 -webkit-linear-gradient	 1183
    .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current	 -webkit-linear-gradient	 1187
    .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current	 -webkit-linear-gradient	 1187
    .socket_color .mejs-controls .mejs-time-rail .mejs-time-current, .socket_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .socket_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .socket_color .theme-color-bar .bar	 -webkit-linear-gradient	 1249
    .footer_color .mejs-controls .mejs-time-rail .mejs-time-current, .footer_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .footer_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .footer_color .theme-color-bar .bar	 -webkit-linear-gradient	 1279
    .alternate_color .mejs-controls .mejs-time-rail .mejs-time-current, .alternate_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .alternate_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .alternate_color .theme-color-bar .bar	 -webkit-linear-gradient	 1309
    .main_color .mejs-controls .mejs-time-rail .mejs-time-current, .main_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .main_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .main_color .theme-color-bar .bar	 -webkit-linear-gradient	 1338
    .header_color .mejs-controls .mejs-time-rail .mejs-time-current, .header_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current, .header_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, .header_color .theme-color-bar .bar	 -webkit-linear-gradient	 1372
    #202805

    Hi xpoveda!

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

    .bottom_nav_header.social_header .main_menu, .bottom_nav_header.social_header .main_menu { margin-top: -40px; }
    .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    border-right-style: none; }
    .bottom_nav_header.social_header .main_menu ul:first-child>li:first-child a {
    border-left-style: none; }
    .bottom_nav_header.social_header #top .main_menu .menu-item-search-dropdown {
    float: left;
    }

    Can you add breadcrumbs to any of your page so we can check if that is easy to pull it off?

    Regards,
    Yigit

    #202360
    zjohnson79
    Participant

    Hi,

    I have been using the enfold theme for a couple of months now and I have noticed that the Contact Forms do work and do not send inputted information to my email address. I have run a couple of tests and inputted data and hit submit but none of the information comes to my email address. I checked my spam folders and doublechecked the email address listed.

    I did some research and saw that bluehost in particular had some issues with contact form information getting to the proper email address.

    Any help with this?

    #201766
    chartreader
    Participant

    Hi
    I would like to use the same font like the one you can see in the Preview slide or the fonts in the sample slider of Enfold. Searched over 2 hours – with no results ;( – please help

    Thank you
    chartreader

    #201689
    revion
    Participant

    After upgrading to wordpress 3.8 and latest Enfold theme 2.5 when using Chrome Version 31.0.1650.63 when clicked on search box it does not pop up. However it does work in I.E.11
    Our site is: http://www.revion.com/

    Can you help us resolve this?

    Thank you.

    #201449

    Hey jmalevic!

    1) Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php and replace

    
                        if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}
    

    with

    
            if($show_meta && !empty($excerpt))
            {
                $output .= "<div class='slide-meta'>";
    
                $taxonomies  = get_object_taxonomies(get_post_type($the_id));
                $cats = '';
                $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
    
                if(!empty($taxonomies))
                {
                    foreach($taxonomies as $taxonomy)
                    {
                        if(!in_array($taxonomy, $excluded_taxonomies))
                        {
                            $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                        }
                    }
                }
    
                if(!empty($cats))
                {
                    $output .= '<div class="slide-meta-comments">';
                    $output .= $cats;
                    $output .= "</div><div class='slide-meta-del'>/</div>";
    				        }
    
                $output .= "<div class='slide-meta-time updated'>". get_the_tag_list( __('Tags:','avia_framework').' ', ',') ."</div>";
    
    						$output .= "</div>";
    					}
    

    2) Please try to use Codestyling to translate all text strings within the theme code: http://wordpress.org/plugins/codestyling-localization/
    Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to search for all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Regards,
    Peter

    #201369

    Topic: XML-RPC file

    in forum Enfold
    MtnStreamGroup
    Participant

    Ever since I installed Enfold and deactivated all the plugins and reactivated them I’ve been getting the following error message when attempting to connect Jetpack to WordPress.com.

    Error Details: The Jetpack server could not communicate with your site’s XML-RPC URL. Please check to make sure http://mountainstreamgroup.com/wordpress/xmlrpc.php is working properly. It should show ‘XML‑RPC server accepts POST requests only.’ on a line by itself when viewed in a browser and should not have any blank links or extra output anywhere.

    Jetpack states “The problem is that there’s whitespace above the message. This extra space is annoyingly important. It suggests that some plugin, theme, or wp-config.php file in your WordPress has extra “whitespace” (new lines, spaces, tabs, …) before the first “<?php” in the file.”

    I started going through all of the .php files as they stated and I found the Enfold error404.php file has the following.

    1
    2<p class=’entry-content’><?php _e(‘Nothing Found’, ‘avia_framework’); ?><br/>
    3
    4<?php _e(‘Sorry, the post you are looking for is not available. Maybe you want to perform a search?’, ‘avia_framework’); ?>

    Are these spaces on line 1 and 3 the possible cause?

    #201033

    great job with romanian translation.

    please corect this in next release.

    in search box result is:
    Dacă nu sunteți mulțumit cu rezultatele de mai jos vă rugăm să face o altă căutare

    to be logic must be:

    Dacă nu sunteți mulțumit cu rezultatele de mai jos vă rugăm să faceți o altă căutare

    Thank you for your great job and theme.

    #201003

    Hi!

    Enfold bietet diese Funktion nicht standardmäßig an, aber es gibt viele Plugins – zB http://wordpress.org/plugins/search.php?q=font+resize

    Cheers!
    Peter

    #200927

    Hi fonterra!

    You can use this plugin to maximize the search power of your website: SearchWP

    Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Regards,
    Ismael

    #200696
    This reply has been marked as private.

    Hi Again.

    Thanks for this.

    I am not sure if all the dummy data has been downloaded properly then. As if I search for their names the gallery finds none.

    How many sliders should there be – on the online demo there were 5 or 6 I think – but I am only getting two?

    Thanks

    #200592

    Hi!

    1) The submenu modification would require some additional coding (js/css) and this customization is beyond the scope of our support forum. I recommend to hire someone here: http://www.microlancer.com/ or here: http://kriesi.at/contact/customization who can help you to modify the theme files or you can search for a menu plugin here: http://wordpress.org/plugins/

    2) You can use following code to align the menu items on the left side and to remove the dots for the child menu items

    
    #top .sidebar_left .widget_nav_menu li {
    text-align: left;
    }
    
    #top .sidebar_left .widget_nav_menu ul ul li:before {
    content: "";
    }
    

    Best regards,
    Peter

    #200516
    jmaguirrei
    Participant

    Hello!

    In my site I have a fixed header and socket, obtained via CSS code, using Small Non-Fixed Header in the Header Type at Enfold Theme Options.

    http://www.adw.cl/whiskypedia/

    CSS

    /* ————————————————————————- */
    /* Header */
    /* ————————————————————————- */
    /* 1. Posicion y estilo del Header */
    #header {
    position: fixed;
    background: grey;
    top: 0px;
    height: 35px;
    }
    /* 2. Complemento al estilo del Header anterior */
    #header_main {
    height: 35px;
    }
    /* 3. Complemento al estilo del Header anterior */
    #header_main .container, .main_menu ul:first-child > li a {
    line-height: 35px;
    height: 35px;
    }
    /* 4. Complemento al estilo del Header anterior */
    .avia-menu-fx {
    height: 0px;
    bottom: -5px;
    }
    /* 5. Complemento al estilo del Header anterior */
    .main_menu {
    height:40%;
    }
    /* 6. Complemento al estilo del Header anterior */
    #top .title_container .container {
    display: none;
    }
    /* 7. Altura de los itemes del menu superior */
    .menu-item {
    height: 28px;
    }
    /* 8. No desplegar el logo en el Header */
    div .logo {
    display: none;
    }

    This is just what I like, except that I want also social icons. If I can include that adding some php, we are done.

    If not, I thing I must change the Header Type.

    If I tried one of the options in the Header with Social icons, I cant reproduce the same style of the header: The menu items doesn’t show or there are blank spaces or alignment issues….

    If you look at http://kriesi.at/themes/enfold/homepage/home-v3-3-column-with-blog/ this is close to what I want, but fixed and without the logo section, but with the search tool at the top (on the right of the label ‘pages’)

    Please your help to configure that style.

    Thanks very much!!

    Regards
    José

    #200050

    Hey!

    That featured is not available at the moment, if you really need you would need to hire a freelancer for the job, also feel free to request it here.

    Best regards, 
    Josue

    #199616

    Hi m!

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

    #top #menu-item-search.menu-item-search-dropdown>a { display: none; }

    Regards,
    Yigit

    #199613

    1th vote for additional blog views, like list view (example: http://the7.dream-demo.com/blog-2/blog-standard/blog-standard-sidebar/ )

    Nice addition to list view, but not necessary, option for grid vew to choose number of columns (2,3 or 4), and perhaps grid/list view switcher at frontend at the top of content area.

    2nd vote for Ajax search in sidebar, content, …

    • This reply was modified 12 years, 4 months ago by VBM.
    #198987

    Hey!

    I checked the code in avia.js http://www.getushotel.com/wp-content/themes/enfold/js/avia.js?ver=1 and you added

    
    new $.AviaAjaxSearch({scope:'#header, .widget_search'});
    

    at the very beginning of the file – please remove the code – it causes a js error and is not required.

    Cheers!
    Peter

    #198976

    I really hope you can add instant ajax search on sidebar

    #198973

    Hi,

    this is my first post in this amazing forum since I found everything I needed through search. Thanks for the great support!

    My question is the same as neondigital’s.
    My website is: Herrenausstatter Wien

    So I’ve been changing the headline Font and the result looks like as follows.

    – The first one appears when I change to Arimo. How do I change it? Is this H1?
    Screenshot 1

    – The second one appears when I change to any other font (in this case Raleway). Obviously this is not Raleway.
    Screenshot 2

    – The third one is a picture of 5 easysliders (so I can use that overlay caption). This seems to be the same font as in the layerslider on top, but bold and uppercase apparently. I changed the values successfully via Safari Web Inspector to ‘capitalize’ and ‘Raleway, but when I add the same code to the custom.css, nothing happens.
    Screenshot 3

    The code is as follows:

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
    font-family:Raleway!important;
    text-transform:capitalize!important;
    }

    Any help would be appreciated.

    Thanks,
    Felix

    BTW:

    – I changed the rights of the wp-content/uploads/dynamic_avia/enfold.css file to 755.
    – I’m using W3 Total Cache plugin.
    – I resetted all caches (pluginwise and browserwise).

    • This reply was modified 12 years, 3 months ago by Trystan.
Viewing 30 results - 6,931 through 6,960 (of 7,502 total)