Forum Replies Created

Viewing 15 posts - 16 through 30 (of 42 total)
  • Posted in:
  • in reply to: best css for adjusting all heads and titles on site? #213688
    mcheck
    Member
    Post count: 44

    Any of the blog/post articles as I posted above.

    As I put above, here is the Title on desktop:

    
    .page-heading h1, .page-heading h3 {
        color: #222222;
    }
    local.bamstudios.com/media="all"
    .page-heading h1 {
        margin-top: 0;
        margin-bottom: 0;
        white-space: normal;
    }
    h1, .impact-text, .impact-text-large {
        font-family: Lato,Arial, Helvetica, sans-serif;
        line-height: 58px;
        font-weight: 700;
        font-style: normal;
        font-size: 54px;
    

    ANd here is the Title on an iPhone5s, same font-size, line-height, etc.:

    
    .page-heading h1, .page-heading h3 {
        color: #222222;
    }
    local.bamstudios.com/media="screen"
    @media only screen and (max-width: 767px)
    .page-heading h1 {
        word-wrap: normal;
        white-space: normal;
    }
    local.bamstudios.com/media="all"
    .page-heading h1 {
        margin-top: 0;
        margin-bottom: 0;
        white-space: normal;
    }
    h1, .impact-text, .impact-text-large {
        font-family: Lato,Arial, Helvetica, sans-serif;
        line-height: 58px;
        font-weight: 700;
        font-style: normal;
        font-size: 54px;
    

    The only difference that I can see is in loading responsive.css but there is no sizing changes.

    Should there be?

    in reply to: Suggestions for mobile layout with tabs (tour section) #213682
    mcheck
    Member
    Post count: 44

    Thank you both, trying that right now.

    It is not mobile-specific, but it does need to look better on mobile than it does. It’s just not functional.

    Other than the css, would you suggest a different element(s) to use to get the same functionality: The idea of tabbing/selecting a topic header and showing different image grids?

    Mike

    in reply to: Blog and search page results will not display as intended #213201
    mcheck
    Member
    Post count: 44

    Thanks Rui.

    I think it would make sense otherwise the search page shows a generic list of items.

    I appreciate your response.

    Mike

    in reply to: Blog and search page results will not display as intended #213195
    mcheck
    Member
    Post count: 44

    I resolved the issue by changing sf-base.php

    Actually I replaced the entire function in my functions.php

    Can you confirm, that the is_search() should be in that file as indicated?
    I assume it will be added in an upcoming release?

    Thanks, Mike

    in reply to: Blog and search page results will not display as intended #212978
    mcheck
    Member
    Post count: 44

    By adding is_search to sf-base.php at line 184, the search page displays the same as the archive page as intended.

    
                // ARCHIVE / CATEGORY SIDEBAR CONFIG
                if ( is_search() || is_archive() || is_author() || is_category() || is_home() ) {
                    $default_sidebar_config = $sf_options['archive_sidebar_config'];
                    $default_left_sidebar   = $sf_options['archive_sidebar_left'];
                    $default_right_sidebar  = $sf_options['archive_sidebar_right'];
                }
    

    does that make sense?

    Mike

    in reply to: Blog and search page results will not display as intended #212976
    mcheck
    Member
    Post count: 44

    I may have tracked one possible reason…

    Is it possible that line 19 from search.php is not being set correctly?

    sf_set_sidebar_global( $sidebar_config );

    That is the main difference between search.php and archive.php where the side bar, as far as I can tell, is not being set correctly.

    Archive.php works correctly. Search.php does not work correctly.

    Thanks.

    Mike

    in reply to: Blog and search page results will not display as intended #212963
    mcheck
    Member
    Post count: 44

    I have updates to Cardinal 2.32 and Swift-Framework 1.63 and I see the Archive Page Masonry # of columns.

    However, The Archive Page (which should be the Search Result page< correct?) does not show the side bars. I cannot figure out why.

    No matter the type of Archive list selected: Mini, Bold, Masonry, the sidebars do not show up.

    You can check our /blog page to see this behavior.

    Thanks!

    Mike

    in reply to: related articles styling and spacing #212920
    mcheck
    Member
    Post count: 44

    Thanks David, will do. I’ll start a new one: here it is,

    Recent Posts gutter in between posts

    in reply to: Display results options for posts #212887
    mcheck
    Member
    Post count: 44

    I’m running 2.30

    I see the area to manage the Archive and Category options, which I have set.
    But I am assuming that masonry view cannot be adjust for the number of columns? With a sidebar, it shows 2 columns, I would like 3.

    Mike

    in reply to: related articles styling and spacing #212393
    mcheck
    Member
    Post count: 44

    Try adding this Custom CSS to add some space in between.

    .related-items .recent-post { margin-right: 10px; }

    When I add this, it pushes the blocks to the next line. How can I shrink the overall width to allow the 4 to continue to appear on the same row?

    THanks! Mike

    in reply to: Disable WPML translation for Team Custom Post Type #212357
    mcheck
    Member
    Post count: 44

    Thanks Rui.

    But I don’t understand. When I remove the line:

    <custom-type translate="1">team</custom-type>

    from wpml-config.xml, I can manually change the the CPT to “DO NOT TRANSLATE”

    It looks to me like the attribute: translate="1" is forcing a TRUE to always translate.

    Are you saying that is not what it is doing?

    Thanks, Mike

    in reply to: Disable WPML translation for Team Custom Post Type #212249
    mcheck
    Member
    Post count: 44

    I found that the translations for Cardinal were being forced in wpml-config.xml at the root of the theme:

        <custom-types>
            <custom-type translate="1">portfolio</custom-type>
            <custom-type translate="1">clients</custom-type>
            <custom-type translate="1">galleries</custom-type>
            <custom-type translate="1">team</custom-type>
            <custom-type translate="1">testimonials</custom-type>
            <custom-type translate="1">directory</custom-type>
        </custom-types>
        <taxonomies>
            <taxonomy translate="1">portfolio-category</taxonomy>
            <taxonomy translate="1">clients-category</taxonomy>
            <taxonomy translate="1">gallery-category</taxonomy>
            <taxonomy translate="1">team-category</taxonomy>
            <taxonomy translate="1">testimonials-category</taxonomy>
            <taxonomy translate="1">directory-category</taxonomy>
            <taxonomy translate="1">directory-location</taxonomy>
        </taxonomies>

    I’m not sure if that is what was intended, but it is in the Cardinal theme root, which WPML is reading and not allowing modification.

    Once I remove the custom post type and category from the xml file, I can set it manually in the WPML config.

    in reply to: Disable WPML translation for Team Custom Post Type #212231
    mcheck
    Member
    Post count: 44

    WPML > Translation Management shows he same thing. The Cardinal Custom Post Types are dimmed out as the image shows:

    http://take.ms/NAOjc

    Why are only some of the Cardinal CPTs dimmed out? Can you help me determine how to change them to “Do Not Translate”?

    Thanks. Mike

    in reply to: Cardinal update has broken Header 4 #205925
    mcheck
    Member
    Post count: 44

    Yikes! Thanks Ed. I wonder what other files are not in sync.

    What would you suggest as the best method to update?
    I used the WP Admin update, but obviously something did not work as expected.

    Just delete and reload from ThemeForest download?

    Thanks, Mike

    in reply to: Cardinal update has broken Header 4 #205909
    mcheck
    Member
    Post count: 44

    I have not overridden it.

    Here is my cardinal/template-parts/header/header-4.php

    My line 14 shows that sf_header_aux( ‘right’ ) is being called, and with header_right_config set to “” I get the header_right_text

    
    <?php
    
    	/*
    	*
    	*	Header 4
    	*	------------------------------------------------
    	* 	Copyright Swift Ideas 2015 - http://www.swiftideas.com
    	*
    	*	Output for header-4
    	*
    	*/
    	
    	global $sf_options;
    	$header_right_output = sf_header_aux( 'right' );
    	$fullwidth_header    = $sf_options['fullwidth_header'];
    ?>
    
    <?php if ( $fullwidth_header ) { ?>
    <header id="header" class="sticky-header fw-header clearfix">
    <?php } else { ?>
    <header id="header" class="sticky-header clearfix">
    <?php } ?>
    	<div class="container"> 
    		<div class="row"> 
    			
    			<?php echo sf_logo( 'col-sm-4 logo-left' ); ?>
    			
    			<div class="header-right">
    				<?php echo $header_right_output; ?>
    			</div>
    			
    			<?php echo sf_main_menu( 'main-navigation', 'float-2' ); ?>
    			
    		</div> <!-- CLOSE .row --> 
    	</div> <!-- CLOSE .container --> 
    </header> 
    
Viewing 15 posts - 16 through 30 (of 42 total)