Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for '1 column footer'

Home / Forums / Search / Search Results for '1 column footer'

Viewing 20 results - 221 through 240 (of 319 total)
  • Author
    Search Results
  • #85188

    Hello,
    I try to add a color of one line in the footer column1 – text as follows: `<h5 style=”color=#00FFFF”> Technical Support <br/>
    Burgemeester Brandtstraat 2 <br/>
    2841 XC Moordrecht <br/>
    Tel:+31 182 37 72 03 <br/>
    , nothing happens.`

    I see no change.

    (2)
    Is there a complete list of the meanings of all the possibilities with regard to the institutions of the virtue-theme premium.Especially the sense of what I can fill it,
    Thank You

    In forum: Virtue Theme
    #85172

    Hello,

    I have added a qr code widget in footer column 4. Could you help with these issues:

    1. Can they be placed closer together?

    2. On trial and error, I see that I can align it properly either to the homepage or all the rest of the pages. At present I have done the homepage. How can I align it properly for the rest of the pages? The second one is 10px lower on all the other pages.

    3. For screens with 1200px or less, I’d like the two logos to be on the same line. (Because it wasn’t getting aligned well, I made two columns in a visual editor and placed each widget in one column, so it spans 6 on smaller devices 🙁 )

    In forum: Virtue Theme
    #84344

    Do you also know how i can change the rest of the fontcolor in my footer columns to white?
    Seehere for understanding

    #81284
    This reply has been marked as private.
    #81202

    Hello,

    Could you help me :
    1. Center the footer column 4, widgets – all devices . I did it for the first widget, the other two (social & language widgets) I couldn’t.
    2. Center Footer navigation menu – ( if possible ) only on mobiles.
    3. The ” default sorting ” button is overlapping the grid and list view buttons, in mobile landscape mode.

    In forum: Virtue Theme
    #81006

    Hello,

    Could you help me with this:

    1. How can I center the title text of the accordion menus in the footer columns 1, 2 & 3.

    2. How can I hide the Accordion widget in footer column 1, 2 & 3 ; on desktops?

    3. How can I hide the Custom Menu widget in footer column 1, 2 & 3 ; on tablets & mobiles ?

    Thanking you in anticipation.

    #80738

    Hey,
    Filter isn’t an option, they don’t really work like your suggesting. If something is set up to be filterable then wordpress functions can be used to filter is but every html part isn’t filterable.

    You would have to create your very own shortcode, then you could control all of the html output.

    For example you would create the whole shortcode:

    //Shortcode for Blog Posts
    function custom_blog_shortcode_function( $atts, $content) {
    	extract(shortcode_atts(array(
    		'orderby' => '',
    		'order' => '',
    		'speed' =>'',
    		'height' =>'',
    		'width' =>'',
    		'offset' =>null,
    		'cat' => '',
    		'columns'=> 'two',
    		'word_count' => '',
    		'items' => ''
    ), $atts));
    	if(empty($orderby)) {$orderby = 'date';}
    	if(!empty($order) ) {
    		$order = $order;
    	} else if($orderby == 'menu_order' || $orderby == "title") {
    		$order = 'ASC';
    	} else {
    		$order = 'DESC';
    	} 
    	if(empty($items)) {$items = '4';}
    	if(empty($word_count)) {$word_count = '36';}
    	if(empty($cat)) {$cat = '';}
    
    ob_start(); 
    
    				 if($columns == "one") { 
                    	$img_width = 360;
                    	$postwidthclass = 'col-md-12 col-sm-12';
                    	$home_sidebar = false;
                    	$articleclass = 'home-blog-one-column';
                    } else {
                    	if(kadence_display_sidebar()) {
    						$home_sidebar = true; 
    						$img_width = 407; 
    						$postwidthclass = 'col-md-6 col-sm-6 home-sidebar';
    						$articleclass = 'home-blog-two-columns';
    					} else {
    						$home_sidebar = false; 
    						$img_width = 270; 
    						$postwidthclass = 'col-md-6 col-sm-6';
    						$articleclass = 'home-blog-two-columns';
    					}
                    } ?>
    
    			<div class="home_blog kad-animation home-blog-shortcode <?php echo esc_attr($articleclass);?>" data-animation="fade-in" data-delay="0">
    				<div class="row">
                		<?php 
                		$xyz = '0';
    					$wp_query = null; 
    					$wp_query = new WP_Query();
    					$wp_query->query(array(
    						'orderby' => $orderby,
    						'order' => $order,
    						'offset' => $offset,
    						'post_type' => 'post',
    						'category_name'=>$cat,
    						'posts_per_page' => $items
    						)
    					);
    					if ( $wp_query ) :  while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
    						<div class="<?php echo esc_attr($postwidthclass); ?> blog-home-shortcode-single-post clearclass<?php echo ($xyz++%2); ?>">
    				  		<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    	                    <div class="rowtight">
    	                    <?php global $post, $virtue_premium; 
    	                    if(isset($virtue_premium['post_summery_default']) && ($virtue_premium['post_summery_default'] != 'text')) {
    							if($home_sidebar == true) {
    								$textsize = 'tcol-md-12 tcol-sm-12 tcol-ss-12';
    								$imagesize = 'tcol-md-12 tcol-sm-12 tcol-ss-12';
    							} else {
    								$textsize = 'tcol-md-7 tcol-sm-12 tcol-ss-12';
    								$imagesize = 'tcol-md-5 tcol-sm-12 tcol-ss-12';
    							}
    							if (has_post_thumbnail( $post->ID ) ) {
    										$image_url = wp_get_attachment_image_src( 
    											get_post_thumbnail_id( $post->ID ), 'full' ); 
    										$thumbnailURL = $image_url[0]; 
    										$image = aq_resize($thumbnailURL, $img_width, 270, true);
    										if(empty($image)) { $image = $thumbnailURL; }
    									} else {
    								 		$thumbnailURL = virtue_post_default_placeholder();
    										$image = aq_resize($thumbnailURL, $img_width, 270, true);
    										if(empty($image)) { $image = $thumbnailURL; }
    							 		} ?>
    								 <div class="<?php echo esc_attr($imagesize);?>">
    									 <div class="imghoverclass">
    		                           		<a href="<?php the_permalink()  ?>" title="<?php the_title(); ?>">
    		                           			<img src="<?php echo esc_url($image) ?>" alt="<?php the_title(); ?>" width="<?php echo esc_attr($img_width);?>" height="270" class="iconhover" style="display:block;">
    		                           		</a> 
    		                             </div>
    		                         </div>
    
                               		<?php $image = null; $thumbnailURL = null;
                            } else { 
                              		if (has_post_thumbnail( $post->ID ) ) {
    	                    				if($home_sidebar == true) {
    	                    					$textsize = 'tcol-md-12 tcol-sm-12 tcol-ss-12'; 
    	                    					$imagesize = 'tcol-md-12 tcol-sm-12 tcol-ss-12';
    	                    				} else {
    	                    					$textsize = 'tcol-md-7 tcol-sm-12 tcol-ss-12';
    	                    					$imagesize = 'tcol-md-5 tcol-sm-12 tcol-ss-12';
    	                    				}
    										$image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); 
    										$thumbnailURL = $image_url[0]; 
    										$image = aq_resize($thumbnailURL, $img_width, 270, true);
    										if(empty($image)) { $image = $thumbnailURL; }
    										 ?>
    								 		<div class="<?php echo esc_attr($imagesize);?>">
    										 <div class="imghoverclass">
    			                           		<a href="<?php the_permalink()  ?>" title="<?php the_title(); ?>">
    			                           			<img src="<?php echo esc_url($image); ?>" alt="<?php the_title(); ?>"  width="<?php echo esc_attr($img_width);?>" height="270" class="iconhover" style="display:block;">
    			                           		</a> 
    			                             </div>
    			                         	</div>
     										<?php $image = null; $thumbnailURL = null; 
    				                } else { 
    				                       	$textsize = 'tcol-md-12 tcol-ss-12';
    				                } 
    						}?>
    	                       		<div class="<?php echo esc_attr($textsize);?> postcontent">
    	                       			<div class="postmeta color_gray">
    				                        	<div class="postdate bg-lightgray headerfont">
    				                        		<span class="postday"><?php echo get_the_date('j'); ?></span>
    				                        		<?php echo get_the_date('M Y');?>
    				                        	</div>
    				                            
    				                        </div>
    				                    <header class="home_blog_title">
    			                          <a href="<?php the_permalink() ?>">
    			                          	<h2 class="entry-title"><?php the_title(); ?></h2>
    			                          </a>
    			                          <div class="subhead color_gray">
    			                          	<span class="postauthortop" rel="tooltip" data-placement="top" data-original-title="<?php echo get_the_author() ?>">
    			                          		<i class="icon-user"></i>
    			                          	</span>
    			                          	<span class="kad-hidepostauthortop"> | </span>
    			                          		<?php $post_category = get_the_category($post->ID); if (!empty($post_category)) { ?> 
    			                          		<span class="postedintop" rel="tooltip" data-placement="top" data-original-title="<?php 
    			                          			foreach ($post_category as $category)  { 
    			                          				echo $category->name .'&nbsp;'; 
    			                          			} ?>"><i class="icon-folder"></i></span>
    			                          		 <?php }?>
    			                          		 <?php if(comments_open() || (get_comments_number() != 0) ) { ?>  
    			                          	<span class="kad-hidepostedin">|</span>
    			                        	<span class="postcommentscount" rel="tooltip" data-placement="top" data-original-title="<?php esc_attr(get_comments_number()); ?>">
    			                        		<i class="icon-bubbles"></i>
    			                        	</span>
    			                        	 <?php }?>
    			                        </div>
    			                        </header>
    		                        	<div class="entry-content">
    		                          		<p><?php echo virtue_excerpt($word_count); ?> 
    			                          		<a href="<?php the_permalink() ?>">
    			                          			<?php if(!empty($virtue_premium['post_readmore_text'])) {
    			                          				$readmore = $virtue_premium['post_readmore_text'];
    			                          			} else {
    			                          				$readmore = __('Read More', 'virtue');
    			                          			} echo $readmore; ?>
    			                          		</a>
    		                          		</p>
    		                        	</div>
    		                      	<footer>
                           			</footer>
    							</div>
    	                   	</div>
                        </article>
                    </div>
                        <?php endwhile; else: ?>
    						<li class="error-not-found"><?php _e('Sorry, no blog entries found.', 'virtue');?></li>
    					<?php endif; ?>
    				<?php $wp_query = null; wp_reset_query(); ?>
    
    	</div>
    </div> <!--home-blog -->
                		
    
    	<?php  $output = ob_get_contents();
    		ob_end_clean();
    	return $output;
    }
    

    Then hook that into wordpress with your custom shortcode hook

    function my_extra_shortcodes(){
       add_shortcode('custom_blog_posts', 'custom_blog_shortcode_function');
    }
    add_action( 'init', 'my_extra_shortcodes');

    and then you would be able to use the new shortcode:

    
    [custom_blog_posts items="2" cat="wissenswertes" orderby="date"]

    Ben

    In forum: Virtue Theme

    In reply to: Footer credits

    #80607

    Hmm, Ok

    So since your using all the footer widgets there isn’t really a great option for making a new one that is beside the credits…

    Closest thing would be to install this plugin: https://wordpress.org/plugins/wp-widgets-shortcode/

    Then create a new widget area in your theme options > misc settings.

    Lastly in the footer credits box you would add

    [columns][span6]© 2016 PanDora's Kitchen[/span6][span6] [dynamic-sidebar id='Your New Widget Area/Sidebar Name'] [/span6][/columns]
    

    That would make your new sidebar show in the footer next to the credits.

    Once you have the image url let me know I can help you with the css.

    Ben

    In forum: Virtue Theme

    In reply to: Footer credits

    #80206

    Hey,
    1. How many footer columns are you using? (posting a link with support is always best)

    2. What is the custom icon? Is it an image? Can you send a link to this image?

    Ben

    In forum: Virtue Theme

    In reply to: Home Slider setup

    #79930

    Hey Joseph,
    The footer is created using the four column layout (Theme Options > Footer). Then widgets are added from Appearance > Widgets.
    Here’s what is used:
    Column 1: Text Widget
    Column 2: Virtue: Contact/VCard Widget and Virtue Social Links Widget
    Column 3: Virtue: Post Grid Widget
    Column 4: Custom Menu Widget

    Hope that helps!
    Hannah

    In forum: Virtue Theme
    #78835

    Hey,
    So the grid widget is only designed for sidebars or footers. It’s set up to output small thumbnails.

    You can use a shortcode if you would like to add portfolio posts in a page. For example: [portfolio_posts columns="5" items="10"]

    Ben

    #77468

    Hi,
    I dont have enough knowledge to do it by myself, so I ask You for help. My webpage is
    My problems:
    1. I have Social links widget, that I have inserted into Footer column 1. But I wated it would be just under the content (picture) and there is some free space under the picture. I would like to have it like on the screen
    2. Page Blog is my post page. I would like it would be displayed in few columns side by side with pagination (one column is post pisture and under this post excerpt). Now the posts are displayed over-under. I’ve seen settings to do this by theme option but only if new posts would be on my home page. Here they aren’t. I’ve found some plugin but there is info:
    Copy & paste this code into a template file to display this WPLP block: echo do_shortcode(‘[frontpage_news widget=”101″ name=”Block”]’);
    I don’t know really where should I paste this (and does it works ok)
    3. Is it possible to have page title like on this screen (in the same line as primary menu).
    4. I would like to have line between a header and the content (like on this screen).

    Thanks for any help

    #77392

    Hi Ben,

    Please kindly take a look at this link:
    http://www.ckingsensors.com/ckingsupplier.

    I am using the call-to-action in the footer widget area (4 all together: footer 1, footer2, footer3, footer4).
    I have changed the background color of each column so I can hopefully explain what I want to do.

    The four footer columns are in red, green, brown, and pink.

    Within each of this footer column you can see the blue box with a text.

    Right now, depending on long the text in those blue boxes are, the width and height of each box changes accordingly.

    My question:
    How do I change:

    1) the width
    2) the height and
    3) the background color

    of these blue boxes so they don’t change every time I change the text within those boxes?

    I am using Virtue Premium.

    Thank you,
    Jay

    #77304

    http://www.temp.mychoiceconnection.com

    Go to footer columns. This is what you gave me to tighten line spacing–

    If you want more or less space you can change the -5 to whatever you like

    #containerfooter h3 {
    margin-bottom: -5px;
    }

    However, this code didn’t work to reduce line spacing between Footer widgets lines of title and page link lists below title. And ideas? I want to tighten it up under title and between page links below title.

    Living Inside-Out

    Living Inside-Out
    Barriers

    Let’s Get Real

    Let’s Get Real *Recipes for Health & Life
    Appetizers
    Desserts
    Fun with Food
    Simple Choice Recipes
    Snacks

    Post Archives

    January 2016 (17)


    Here’s the code I have currently for footer columns:

    #containerfooter h3 {
    font-size: 15px;
    }

    #containerfooter .menu li a {
    background-color: hsla(0,0%,0%,0);
    }
    #containerfooter .menu li a {

    “padding-bottom: 0px;
    margin-bottom: 0px;”

    }

    footer#containerfooter span {
    font-size: 12px;
    }

    aside#archives-2 ul li {
    font-size: 12px;
    }

    .kad-info-box h4 {
    font-size: 14px;
    }

    #76187

    Hey,
    Sorry for the delay! Thanks for the kind words and for recommending our theme! We truly appreciate it.

    1. I played around with this for quite some time and couldn’t come up with the right css to make it work. I will make sure the theme developer looks into this. Thanks for your patience!

    2. There isn’t a built in option to turn off the auto play within the home layout options. I would suggest using a shortcode like this:

    [custom_carousel columns=4 speed=9000 scroll=1]
    
    [carousel_item columns=4]
    Item 01 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=4]
    Item 02 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=4]
    Item 03 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=4]
    Item 04 - Add your info here
    [/carousel_item]
    
    [/custom_carousel]

    You could just paste that into a visual editor widget within the home widget area.

    3.

    #containerfooter h3 {
        text-align: center;
        border-right: 1px solid;
    }

    Hope that helps!
    Hannah

    In forum: Pinnacle Theme
    #74880

    What are you wanting to add?
    I see this in the site you linked it and it’s working fine. I don’t understand why your adding it but it’s adding a padding to the top of your first footer widget column.

    @media (min-width: 992px) {
    .col-md-4.footercol1 {
        padding-top: 200px;
    }
    }

    Ben

    #74557

    Hello,
    I created a child theme to safe keep modified plug in templates. In the child theme folder there is a style.css file, and a function.php, in addition to a folder containing modified plugin templates.
    When previewing the child theme, the footer of the page is missing the menu. Going live has the same result.

    The style.css file has the following content:
    /*
    Theme Name: pinnacle premium child
    Theme URI:
    Description: pinnacle premium child theme
    Author: Gregorio
    Author URI:
    Template: pinnacle_premium
    Version: 1.0.0
    License: GNU General Public License v2 or later
    License URI:
    Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
    Text Domain: pinnacle_premium_child
    */

    The functions.php file has the following content:
    <?php
    add_filter( ‘woocommerce_return_to_shop_redirect’, ‘return_to_shop_link’ );

    function return_to_shop_link() {
    return ‘
    }

    I’m currently fully updated with WP (4.4.1) , theme (1.5.7), and pluggins.

    Is the child theme not set up correctly?

    Thank you

    #72378

    Hey,
    1. Has to do with you adding the column shortcodes inside a fullwidth row.. You can add this:

    .siteorigin-panels-stretch .row {
        margin: 0;
    }
    

    2. That has to do with your wordpress footer recent posts widget.. you can add this css:

    @media (max-width: 768px){
    .footerclass .widget_recent_entries li {
        margin-bottom: 10px;
    }
    }

    3. This is something you would need to use a plugin to change. The theme and plugins all use regular wordpress hooks to add in scripts. If you want to minimize scripts you need to use something like w3 total cache of wp-rocket cache and enabled the css and js minify.

    Just a note, Google page speed is a tool. Always look at the most important thing which is load time over any ranking from them. Just run amazon through and you’ll see what I mean.

    Ben

    In forum: Virtue Theme

    Topic: Vcard issues

    #71927

    Some slight issues with the contact/vcard module. The example is at this site in footer column 2.

    The module seems to be oriented to a personal blog, not a commercial entity. We don’t really need mobile in this case, just fixed phone. Then add a Fax field. There is no icon for Fax I think. Then also have the option for phone to be an anchor tag with href=”tel:5555551234″, for mobile visitors to call easily.

    #71315

    I installed the calendar plug in recommended. Want calendar to also be a thumbnail on right column widget and footer/column 1 as a dated list. But when I added the “Events List” widget it doesn’t connect with the plug in calendar. What do I need to do?

Viewing 20 results - 221 through 240 (of 319 total)