Forum Replies Created

Viewing 30 posts - 63,421 through 63,450 (of 66,017 total)
  • Author
    Posts
  • in reply to: Text Block Font css #137416

    Hey,

    You can add a unique selector to the h1 tag. Something like this:

    <h1 class="awesome" style="text-align: center;">MY TEXT HERE</h1>

    You can then style it on your custom.css or Quick CSS:

    h1.awesome {
    font-size: 20px !important;
    color: #ffffff !important;
    }

    Regards,

    Ismael

    in reply to: Blog page -> not really nice without sidebar #136593

    Hi,

    Please use the http://wordpress.org/plugins/addthis/. It doesn’t break the layout of the theme.

    Refer to this link on how to add the buttons: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606

    Use the Text widget to add the addthis social button code on the Footer – Column widget area.

    Regards,

    Ismael

    in reply to: Enfold Feature Requests #114807

    Hey,

    @jimbolgs: You can actually insert shortcode on your footer widgets. Use the Text widget then place it on the Footer – Columns widget area. Try the button element. :)

    Cheers,

    Ismael

    in reply to: Blog Pagination Not working in Grid view #135271

    Hey,

    Glad Dude fixed it. :)

    Cheers,

    Ismael

    in reply to: Can't switch off Image Hover #137375

    Hey,

    Glad you fixed it. :)

    You can place the code on the child theme’s style.css:

    .image-overlay.overlay-type-extern {
    display: none !important;
    }

    Cheers,

    Ismael

    Hi,

    I can’t seem to reproduce the issue on my end. I have WordPress 3.6 and Enfold 2.0.1 and the button is working ok. Have you tried switching to the Advance Layout Editor? You can use the “Image” element to insert images. Let me tag the rest of the support team.

    Also, please try to create a test site then activate Enfold. Check if the “Insert into page” button is working there.

    Regards,

    Ismael

    in reply to: Logo Problem IE9 #136193

    Hey,

    Glad it fixed it. Thanks to Dude. :)

    Regards,

    Ismael

    in reply to: Enfold LayerSlider Font Take Two #137350

    Hey,

    First, can you give us a link to website?

    1.) You don’t have to use WP Google Fonts for Open Sans. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:700';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:700';
    return $fonts;
    }

    This will enable the Open Sans Bold 700. Go to Enfold > Styling > select a Heading Font and Define the Font for your body text.

    Again, use the code for the LayerSlider layers with the css selector “.layerslider-open-sans”:

    .layerslider-open-sans {
    font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    }

    3.) You can access custom.css via FTP or your cpanel. It is located on wp-content/themes/enfold/css folder.

    Regards,

    Ismael

    in reply to: Add margin to Portfolio Items #137298

    Hey,

    How many columns are you using for your portfolio items? Can you give us a link to the page?

    Regards,

    Ismael

    in reply to: Gallery image loading problem IE10 #134417

    Hey,

    Glad it is fixed. Whew! :)

    Regards,

    Ismael

    in reply to: Tag page problem #135895

    Hey,

    I don’t think it has something to do with the sidebar settings. I can’t fix the issue because I can’t reproduce it on my end. Let me tag the Kriesi and the rest of the support team.

    Regards,

    Ismael

    in reply to: fixed menu on mobile #137140

    Hey,

    What do you mean by “window reached logo+menu part”?

    The code above should render the header fixed when viewing on mobile device.

    Regards,

    Ismael

    in reply to: Mobile menu tablet breakpoint #137401

    Hey,

    Did you try the changes listed on the thread?

    Regards,

    Ismael

    Hey,

    This will make it look exactly like the login button. Just change the color value:

    .bbp-register-link {
    border-radius: 2px;
    background-color: #c3512f;
    color: #ffffff !important;
    border-color: #c3512f;
    cursor: pointer;
    display: block;
    height: 34px;
    width: 68px;
    font-size: 13px !important;
    padding: 10px 10px 10px 10px !important;
    margin-top: 2px;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    text-decoration: none !important;
    }

    .bbp-register-link:hover {
    background-color: #88bbc8;
    color: #ffffff;
    border-color: #88bbc8;
    }

    Regards,

    Ismael

    in reply to: Enfold & WP update related AJAX portfolio preview issue #137381

    Hey,

    Glad it’s working now. :)

    Cheers,

    Ismael

    in reply to: How to change font colors in portfolio galleries #137282

    Hey,

    Remove the code for number, use this:

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Regards,

    Ismael

    in reply to: Hide Date in Recent Articles Element #137084

    Hey,

    You can use this instead:

    .slide-meta-time, .slide-meta-del {
    display: none !important;
    }

    Cheers,

    Ismael

    in reply to: Navigation Menu Changes #136699

    Hey,

    This will get you started. Edit header.php, find this code:

    <!-- end container-->
    </div>

    Above, place this code:

    <div id="right-header">
    <a class="login"href="LINK HERE">Login</a>
    <a class="get-started"><img src="BUTTON IMAGE URL HERE"></a>
    </div>

    After that, add this on your custom.css or Quick CSS:

    #right-header {
    position: absolute;
    right: 0;
    }

    #right-header a {
    display: inline-block;
    width: 50px;
    height: 100%;
    }

    #right-header a.login {
    border-right: 1px solid gray;
    }

    Regards,

    Ismael

    in reply to: Video on iOS = double play buttons #135295

    Hey,

    Glad we could help. :)

    You can request it here: https://kriesi.at/support/topic/enfold-feature-requests

    Cheers,

    Ismael

    Hi,

    Searching for a fix, I found this solution. If your PHP settings have ‘Multibyte String : mbstring.encoding_translation’ turned on, some special characters will not display, and cut any content following them. Can you please ask your host to disable this setting?

    Regards,

    Ismael

    in reply to: LayerSlider breaks the layout #137145

    Hi,

    Your site looks good. I don’t see any broken layout.

    Regards,

    Ismael

    in reply to: CSS location for changing headers etc & tables. #136557

    Hey,

    You can remove the word archive on framework > php > function-set-avia-frontend.php, find this code:

    if(!function_exists('avia_which_archive'))
    {
    /**
    * checks which archive we are viewing and returns the archive string
    */

    function avia_which_archive()
    {
    $output = "";

    if ( is_category() )
    {
    $output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
    }
    elseif (is_day())
    {
    $output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
    }
    elseif (is_month())
    {
    $output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
    }
    elseif (is_year())
    {
    $output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
    }
    elseif (is_search())
    {

    Regards,

    Ismael

    in reply to: fixed menu on mobile #137137

    Hey,

    Just add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    }
    }

    Remove browser cache then reload the page.

    Cheers,

    Ismael

    in reply to: portfolio thumbnail does not generate #137068

    Hey,

    Did you set the featured image?

    Regards,

    Ismael

    in reply to: Blog strong class="main title" change to h1 class #136325

    Hey,

    You can find it on functions-enfold.php:

    'title' 		=> get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/

    Regards,

    Ismael

    in reply to: Why are my Portfolio thumbs not showing up in grid? #137263

    Hey,

    The link leads me to a 404 page.

    Regards,

    Ismael

    Hi,

    What “Insert into page button”? Can you give us a screenshot? Have you tried disabling all your plugins?

    Regards,

    Ismael

    in reply to: video in ajax portfolio #137226

    Hi,

    You can add video beside the main featured image. Edit the portfolio item, scroll below then look for “Add Preview Text”, switch to Text mode. Add something like this:

    <a href="http://youtu.be/kYtGl1dX5qI" rel="lightbox"><img alt="" src="IMAGE URL HERE" /></a>

    Don’t forget to add rel=”lightbox” to the anchor tag. This will open the video on a lightbox.

    Anyway, you can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    in reply to: Changing blog name ONLY in breadcrumbs of ENFOLD #125406

    Hey,

    Edit framework > php > class-breadcrumb.php , find this code:

    'show_home' => __( 'Home', 'avia_framework' ),

    Replace it with:

    'show_home' => __( 'Atelier', 'avia_framework' ),

    Regards,

    Ismael

    in reply to: Header/Nav/footer #135880

    Hey,

    Please use the header with bottom navigation. It is the header I use when I modified the theme. Also, small fix header will not show any social icons.

    Regards,

    Ismael

Viewing 30 posts - 63,421 through 63,450 (of 66,017 total)