webizone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menuThanks a ton. All the problems have been solved.Without your guidance it couldn’t have been possible. God bless.
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menusolved
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menu3. that code worked.
Sorry again, for editing the framework css. Actually while searching for solutions I got those code mentioned by someone.
Should i remove the code from my custom css–[class*=”span”] {
float: none;
margin-left: 20px;
min-height: 1px;
}Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menusorry..I should not have done that.
1. I added this code–
#containerfooter {
line-height: 36px;
}the resulting page is my site
3. I have checked the page in text mode, no p tag.
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menu1. solved… I have changed the following code
old code–
[class*=”span”] {
float: none;
margin-left: 20px;
min-height: 1px;
}new code–
[class*=”span”] {
float: left;
margin-left: auto;
min-height: 1px;
}And it is working. Is it the right code or I just somehow did it ??
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menuHi, just now I have updated ??
url– mys siteAfter editing, the following happened..
1.Added the three footer widgets,But I am unable to get the css to make them aligned in a line.
2.Solved, removed the code mentioned by you.
3.Added the code to remove the space above the slider. That worked fine with localhost, no space.But when I used the code in the live site, there stil exists little space. I inspected with google chrome dev tool and found a <p>…</P>. But there is no space in the page while editing.I even replaced the whole theme folder from localhost.Doesn’t work.
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menuHi Kadence,I have managed to have a temporary url for my site.here it is–
my siteFor this I am using a child theme.But i have negligible knowledge to edit the php templates.
1. How can i edit the footer such that copyright remains at the bottom left, then the menu containg the three pages at the center and social networking icons at the bottom right of the footer.I dont want to use the footer widgets.
2.As you can see the search box and the widgets at the top right corner are not aligned with the menu containing pages.can i make them appear in one line.
3.Can i increase the slider height in such a way that the white space between the header and the slider disappears.Please dont mind if I am asking a lot of questions.I really like your awesome theme.
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menuSurely I will do. Thank you for your quick reply.
Forum: Themes and Templates
In reply to: [Virtue] alligning the footer menuActually I have negligible knowledge of php. Can you suggest some code.
This is my footer.php ——->
<footer id="containerfooter" class="footerclass" role="contentinfo"> <div class="container"> <div class="row"> <?php global $virtue; if(isset($virtue['footer_layout'])) { $footer_layout = $virtue['footer_layout']; } else { $footer_layout = 'fourc'; } if ($footer_layout == "fourc") { if (is_active_sidebar('footer_1') ) { ?> <div class="span3 footercol1"> <?php dynamic_sidebar(__("Footer Column 1", "virtue")); ?> </div> <?php }; ?> <?php if (is_active_sidebar('footer_2') ) { ?> <div class="span3 footercol2"> <?php dynamic_sidebar(__("Footer Column 2", "virtue")); ?> </div> <?php }; ?> <?php if (is_active_sidebar('footer_3') ) { ?> <div class="span3 footercol3"> <?php dynamic_sidebar(__("Footer Column 3", "virtue")); ?> </div> <?php }; ?> <?php if (is_active_sidebar('footer_4') ) { ?> <div class="span3 footercol4"> <?php dynamic_sidebar(__("Footer Column 4", "virtue")); ?> </div> <?php }; ?> <?php } else if($footer_layout == "threec") { if (is_active_sidebar('footer_third_1') ) { ?> <div class="span4 footercol1"> <?php dynamic_sidebar(__("Footer Column 1", "virtue")); ?> </div> <?php }; ?> <?php if (is_active_sidebar('footer_third_2') ) { ?> <div class="span4 footercol2"> <?php dynamic_sidebar(__("Footer Column 2", "virtue")); ?> </div> <?php }; ?> <?php if (is_active_sidebar('footer_third_3') ) { ?> <div class="span4 footercol3"> <?php dynamic_sidebar(__("Footer Column 3", "virtue")); ?> </div> <?php }; ?> <?php } else { if (is_active_sidebar('footer_double_1') ) { ?> <div class="span6 footercol1"> <?php dynamic_sidebar(__("Footer Column 1", "virtue")); ?> </div> <?php }; ?> <?php if (is_active_sidebar('footer_double_2') ) { ?> <div class="span6 footercol2"> <?php dynamic_sidebar(__("Footer Column 2", "virtue")); ?> </div> <?php }; ?> <?php } ?> </div> <div class="footercredits clearfix"> <?php if (has_nav_menu('footer_navigation')) : ?><div class="footernav clearfix"><?php wp_nav_menu(array('theme_location' => 'footer_navigation', 'menu_class' => 'footermenu')); ?></div><?php endif;?> <p><?php if(isset($virtue['footer_text'])) { $footertext = $virtue['footer_text'];} else {$footertext = '[copyright] [the-year] [site-name] [theme-credit]';} echo do_shortcode($footertext); ?></p> </div> </div> </footer> <?php wp_footer(); ?>