Forum Replies Created

Viewing 30 posts - 61,321 through 61,350 (of 67,534 total)
  • Author
    Posts
  • in reply to: tab title color & font size #220238

    Hey Munford!

    You can use this:

    .js_active .tab {
    font-size: 14px;
    }
    
    .js_active .active_tab {
    font-weight: bold;
    }

    Cheers!
    Ismael

    in reply to: Issues with Forms #220237

    Hey wildwoodbranding!

    Please try to install a plugin like Contact Form 7 or Gravity Forms. See if the plugins work for you.

    Regards,
    Ismael

    in reply to: Gravity Forms – Bigger Size #220235

    Hi erickeith9!

    You can use this on Quick CSS or custom.css to modify the forms:

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0px;
    }
    
    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
    width: 100%;
    margin-bottom: 0;
    display: inline;
    min-width: 100px;
    padding: 13px;
    border-radius: 2px;
    }

    Please give us a link to the page with the gravity form plugin.

    Regards,
    Ismael

    Hi ttem!

    You can replace it with this:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( $args['title'] == 'Blog - Latest News' )
        {
            $args['title'] = get_the_title($id);
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
    
        return $args;
    }

    Regards,
    Ismael

    in reply to: Comments section #220233

    Hi!

    You can add this to hide the website field:

    .comment-form-url {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: nowrap text #219826

    Hey!

    Add this on Quick CSS:

    .comment-subscription-form {
    width: 120%;
    }

    Best regards,
    Ismael

    Hey Benjaminlivingthebrand!

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements like Widget Area then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-widget”.

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

    .awesome-widget {
    background: blue;
    }

    Regards,
    Ismael

    in reply to: Adding Link To Gallery #219824

    Hey Richard!

    It is not possible with the theme but you can try this plugin: http://wordpress.org/plugins/wp-gallery-custom-links/

    Regards,
    Ismael

    in reply to: Messed up slides on frontpage on 1280×1024 #219822

    Hi!

    Please add this on Quick CSS:

    @media only screen and (max-width: 1340px) and (min-width: 989px) {
    .responsive .av-masonry-entry {
    width: 25.0%;
    }
    }

    Regards,
    Ismael

    in reply to: Blog options #219821

    Hi!

    Add this on Quick CSS to remove the image overlay on featured images:

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

    I can’t find the button. Can you please give us the link to the actual page with the button?

    Cheers!
    Ismael

    Hey Berebeeld!

    You need to edit the Easy Slider then click each images. Look for “Slide Link?” option then set it to “Lightbox”.

    Cheers!
    Ismael

    in reply to: Accordion all toggles open #219818

    Hi Linden Mobile!

    Please add this on Quick CSS or custom.css:

    .js_active .toggle_wrap {
    display: block;
    position: static;
    visibility: visible;
    left: 0;
    width: auto;
    z-index: 1;
    }
    

    Best regards,
    Ismael

    Hi frankoforte!

    Can you please post a screenshot of the issue? The page looks well on iPad view.

    http://quirktools.com/screenfly/#u=http%3A//wiedemeier-kommunikation.de/sms/&w=768&h=690

    Cheers!
    Ismael

    in reply to: Breite des Containers ändern (Theme: Enfold) #219815

    Hi!

    Which content area? You can edit functions.php, find this code:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    You can decrease the content units to eight then increase the sidebar width to four.

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');

    Regards,
    Ismael

    in reply to: Enfold Theme Kompatibilität Firefox #219813

    Hi!

    Please add this on Quick CSS or custom.css:

    #top #header .avia_mega_div > .sub-menu > li > ul > li a img {
    max-width: 250px;
    width: 250px;
    }

    Best regards,
    Ismael

    in reply to: Masonry shop #219808

    Hi!

    Did you add the fullwidth masonry element on the Shop page? Edit the element then set the “Which Entries?” option to “Product Cat” or “Product Type” to show product entries.

    Regards,
    Ismael

    in reply to: Enfol and BuddyPress Multilingual #219806

    Hey coer!

    Enfold does not support BuddyPress. BuddyPress requires special templates, etc. to integrate perfectly into the theme and that’s why Envato/Themeforest also sells BuddyPress themes in a special category: http://themeforest.net/category/wordpress/buddypress. You need to use bbPress for the Enfold theme or hire a freelance developer to make BuddyPress plugin compatible.

    Regards,
    Ismael

    Hi ctchope!

    Try to use the Widget Logic plugin to show different widgets on different languages: http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    Regards,
    Ismael

    in reply to: Changes to Mobile Header and Main Menu #219804

    Hey 1raddad!

    Use media queries to resize the logo on different screen sizes. Please add this at the very bottom of the Quick CSS:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #header_main img, #header_main .logo, #header_main .logo a {
    width: 800px !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    #header_main img, #header_main .logo, #header_main .logo a {
    width: 400px !important;
    }
    }

    Adjust the width if necessary.

    Regards,
    Ismael

    in reply to: New Installation – No icon fonts are showing #219803

    Hi SkyBlue7!

    Please give us a link to the actual website. The latest version is 2.4.5.

    Best regards,
    Ismael

    Hi!

    Use this instead:

    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    position: static;
    }
    }

    Best regards,
    Ismael

    in reply to: Replace breadcrumbs with social icons #219797

    Hi GZAM!

    What is the type of header you’re using? We can edit header.php to replace the breadcrumb with social icons but we need to know the kind of header you’re using.

    Best regards,
    Ismael

    in reply to: Blog – Latest News Permalink #219796

    Hey xyzb!

    Please add this on functions.php, this will display the first category of the post:

    add_filter('avf_title_args', 'alter_single_post_title', 10, 2);
    function alter_single_post_title($args,$id) {
    
    	$category = get_the_category($id); 
    	
    	if (is_single()) {
    		$args['title'] = ucfirst($category[0]->cat_name);
    		$args['link'] = get_permalink($id);
    	}
    
    	return $args;
    }
    	

    Best regards,
    Ismael

    Hi Lynn!

    1.) Use this for the button:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .header-button {
    right: 200px;
    width: 200px;
    }
    }

    2.) Hide the layer slider on mobile devices using this:

    @media only screen and (max-width: 768px) {
    .avia-layerslider {
    display: none;
    }
    }

    Regards,
    Ismael

    in reply to: Footer + WPML + Latest News Widget issues #219789

    Hey diskdaddy!

    If I am not mistaken you need to use the Widget Logic plugin.

    http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    Best regards,
    Ismael

    in reply to: Hiding very top Banner so not a double navigation #219784

    Hi!

    Add this to move the image map below the table on iPad view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .page-id-1195 .flex_column.av_one_half.avia-builder-el-11.el_after_av_one_half {
    clear: both;
    }
    
    td {
    padding: 10px 15px !important;
    }
    }

    Cheers!
    Ismael

    in reply to: how have "small header fixed" without logo/header schrink ? #219603

    Hi!

    My bad! Next time, please describe request or issue on the forum’s message box. :)

    Anyway, please edit js > avia.js, find this code on line 17:

    // decreases header size when user scrolls down
            avia_header_size();

    Replace it with:

    // decreases header size when user scrolls down
            //avia_header_size();

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Calling a specific Widget Area #219599

    Hey Alcadis!

    I’m not sure if this is what you want but edit page.php, find this code:

    //get the sidebar
    				$avia_config['currently_viewing'] = 'page';
    				get_sidebar();

    Replace it with this:

    //get the sidebar
    				$avia_config['currently_viewing'] = 'page';
    				if (!em_is_category_page() ) {
    				get_sidebar();
    				} else {
    				echo '<aside class="sidebar sidebar_right smartphones_sidebar_active three alpha units" role="complementary" itemscope="itemscope" itemtype="http://schema.org/WPSideBar"><div class="inner_sidebar extralight-border">';
    				dynamic_sidebar( 'Agenda' );
    				echo '</div></aside>';
    				}

    Regards,
    Ismael

    in reply to: Shift Logo To The Left #219596

    Hey soonmervin!

    You can use this on Quick CSS to move the logo to the left:

    div .logo {
    position: absolute;
    left: 200px;
    }

    Adjust the left value if necessary.

    Regards,
    Ismael

    in reply to: Facebook and twitter widget #219594

    Hi Frisk_Flora!

    You need to use a social plugin like this: http://wordpress.org/plugins/addthis/

    Cheers!
    Ismael

Viewing 30 posts - 61,321 through 61,350 (of 67,534 total)