Forum Replies Created

Viewing 30 posts - 63,871 through 63,900 (of 66,017 total)
  • Author
    Posts
  • in reply to: Search Feature in header of Enfold #135384

    Hi,

    It should be there by default. Go to Appearance > Menu panel. On Theme Locations, select a Main Menu.

    Regards,

    Ismael

    in reply to: social icons in header do not show #134604

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: something funky going on with enfold.css #135124

    Hey,

    Thanks for the tip. Glad it is working now.

    Cheers,

    Ismael

    Hey,

    Glad you figured it out.

    Cheers,

    Ismael

    in reply to: change horizontal ruler colour #135320

    Hi,

    You can use this:

    .main_color .hr-inner {
    border-color: green;
    }

    Remove browser cache then reload the page.

    Regards,

    Ismael

    in reply to: Non Uppercase Widget Titles #135314

    Hi,

    What do you mean by “changing these to ‘special headings’ with a HR next to the text”?

    Regards,

    Ismael

    in reply to: Gallery image loading problem IE10 #134404

    Hi,

    Please try this:

    #top div .avia-gallery img {
    max-height: 100%;
    }

    Regards,

    Ismael

    in reply to: Toggles content #135317

    Hi,

    First, upgrade your theme to 1.9.1. Then switch the Advance Layout Editor to debug mode.

    Edit functions.php, find this code:

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

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You can now see the actual shortcode below the Advance Editor. You can combine shortcodes like this:

    [av_tab_container position='sidebar_tab sidebar_tab_left' boxed='border_tabs' initial='1']
    [av_tab title='Tab 1' icon_select='no' icon='1']
    Tab Content goes here
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_tab]
    [av_tab title='Tab 2' icon_select='no' icon='1']
    Tab Content goes here
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#000000' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_tab]
    [/av_tab_container]

    The code above is the tab shortcode with button shortcode inside the toggles.

    Regards,

    Ismael

    in reply to: Changing sidebar width #134639

    Hey,

    Please add this on your custom.css at the very bottom:

    @media only screen and (min-width: 1140px) {
    .responsive .container .twelve.units {
    width: 1030px !important;
    }
    }

    Regards,

    Ismael

    in reply to: Header menu resize #134751

    Hi,

    Please add this on your custom.css or Quick CSS

    @media only screen and (min-width: 768px) and (max-width: 989px) {

    .main_menu ul:first-child > li > a {
    padding: 0 8px;
    font-size: 11px;
    }
    }

    Regards,

    Ismael

    in reply to: Continuous background image and page-specific backgrounds #135103

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Co-Authors Plus PLEASE #131083

    Hi,

    Sorry but we really don’t give support for third party plugins. The best way to do is to hire a freelancer developer or contact the plugin author.

    Sorry for this. :(

    Regards,

    Ismael

    in reply to: Change Submit Button Color #135078

    Hi,

    I guess you managed to change the button color:

    .page-id-1167 .main_color input[type='submit'] {
    background: #00121d;
    }

    Nice website.

    Regards,

    Ismael

    in reply to: Problem with LayerSlider image source link #135127

    Hi,

    Instead of using the Image layer, you can use the div/video, paragraph, span layers. You can add the image using html tag.

    <img src="YOUR IMAGE URL HERE" />

    Regards,

    Ismael

    in reply to: Side Bar Recent Posts not working when Tag clicked #135272

    Hi,

    I’ll tag Kriesi. It is happening on my end once you click a “tag” link.

    For the meantime, you can hide using this on your Quick CSS:

    .tag #recent-posts-4 {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Hyperlink to PDF Issue #135248

    Hi,

    You can’t click the link because of the “fbSEOComments” div. Did you add a plugin?

    Please add this on your custom.css or Quick CSS

    div#fbSEOComments {
    z-index: -1;
    }

    Regards,

    Ismael

    in reply to: Custom menu widget #134989

    Hi,

    1.) Add this on your custom.css or Quick CSS

    #top .widget_nav_menu ul ul li:before {
    content: "";
    }

    To remove the indent, use this:

    #top .sidebar_left .widget_nav_menu .sub-menu {
    padding-right: 0;
    }

    2.) The menus are already aligned to the right.

    3.) I’m sorry but I don’t understand clearly. Please give us a screenshot.

    Regards,

    Ismael

    in reply to: Edit LyerSlider Image source URL #135169

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: Different color for Sidebar headings , links, text #135330

    Hi,

    You can use this:

    .main_color h3.widgettitle {
    color: black;
    }

    .main_color .sidebar a, .main_color .news-time {
    color: black;
    }

    Regards,

    Ismael

    in reply to: Remove category and author in single posts #135366

    Hi,

    You can add this on your custom.css or QUick CSS

    .post-meta-infos {
    display: none;
    }

    Regards,

    Ismael

    Hi,

    There is still no fix on instances where you rotate the iPad then don’t refresh the page.

    To fix the special heading, you can use this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    .av-special-heading h3 {
    font-size: 14px;
    }
    }

    Regards,

    Ismael

    in reply to: Ajax Gallery problem and header adjustment! #135356

    Hi,

    Please update your theme to 1.9.1. Download the latest update on your themeforest account.

    You can adjust the header height using this:

    /*header with social icons: */
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }

    Adjust the height and the line-height.

    Regards,

    Ismael

    in reply to: Adding icons for icon boxes #134611

    Hey,

    @newenglish: Thanks for the tip.

    @trap: You can do the instructions above.

    Regards,

    Ismael

    in reply to: Banner call-to-action on all blog posts #135305

    Hi,

    You can place it on includes > loop-index.php, find this code:

    echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";

    Below, add the banner code:

    echo '<div class="posts_banner">YOUR BANNER HERE</div>';

    or if you are using an image, you do something like this:

    echo '<div class="posts_banner"><a href="URL HERE"><img src="IMAGE URL HERE"></a></div>';

    It will show on all blog posts.

    Regards,

    Ismael

    in reply to: Turn off – hover style – linked image #134988

    Hey,

    Glad it worked.

    Cheers,

    Ismael

    in reply to: portafolio grid ajax and functionality likes "accordion" #135300

    Hi,

    You can use this to hide the preview image:

    .ajax_slide .av_table_col.first.portfolio-preview-image {
    display: none;
    }

    Cheers,

    Ismael

    in reply to: Menu problem #135093

    Hi,

    We can help you better if you can give us a live site with the menu issue.

    Please remove browser cache then reload the page. Remove any of your plugins or deactivate them.

    Regards,

    Ismael

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

    Hi,

    Can you give us a link to your website? You can use Media Queries to remove the play button overlay when viewing on iPad or iPhone.

    @media only screen and (max-width: 767px) {
    .image-overlay.overlay-type-video {
    display: none !important;
    }
    }

    Add the code on your custom.css or Quick CSS

    Regards,

    Ismael

    in reply to: date format #134655

    Hey,

    It will be lost on your update. Please create a change log so that you can easily monitor the files that you change or use a child theme.

    No, you can’t do it via CSS.

    Regards,

    Ismael

    in reply to: Chaning a:hover on link in layerslider #135025

    Hi,

    You can use this for the first H2

    #industries a:nth-child(1) h2 {
    color: red;
    }

    Second H2:

    #industries a:nth-child(2) h2 {
    color: green;
    }

    Please put the last H2 “REVENUE MANAGEMENT FOR MEDIA COMPANIES” inside an anchor tag then change the style using this:

    #industries a:nth-child(2) h2 {
    color: pink;
    }

    Regards,

    Ismael

Viewing 30 posts - 63,871 through 63,900 (of 66,017 total)