Shailesh
Forum Replies Created
-
Forum: Plugins
In reply to: Login in HeaderYour link is broken remove ….. from last.
You can user wordpress wp_signon function for custom wordpress login form.
https://codex.www.ads-software.com/Function_Reference/wp_signon
and also use wp_create_user function for custom registration form.
https://codex.www.ads-software.com/Function_Reference/wp_create_userForum: Networking WordPress
In reply to: Multisite database queryianjayb and Ipstenu
Thanks you so much for response…
Forum: Plugins
In reply to: Plugin menu is not visible in admin pennelIs there setting options in your installed plugins list near “deactivate” link????????
Forum: Themes and Templates
In reply to: Footer problems – margins and widthReplace your stylesheet code on line 2227 style.css
#site-generator
{
background: none repeat scroll 0 0 #F9F9F9;
border-top: 1px solid #DDDDDD;
color: #666666;
font-size: 12px;
text-align: center;
}And add this line in your style.css
#site-generator img { width: 100% !important; }Forum: Fixing WordPress
In reply to: multiple page imagesI think you have to create a category like “gallery”
Than you add some post with featured image in this category and call all the post from this category in any of your page or you can add category in menu.
In page you just get featured image using loop with
<a href="<?php the_permalink();?>"><?php the_post_thumbnail(); ?></a>
You also use your style to arrange images
That’s it…………….
Forum: Fixing WordPress
In reply to: How can I change the postion of a widget?First you have to find that in which page your widget code is call…
After than you have change place of code as you required……
Forum: Fixing WordPress
In reply to: Page-specific CSS elementsYou have to put this code in your template file.
Forum: Fixing WordPress
In reply to: get_sidebar()You can use condition for all different page in sidebar.php
1) You have to find that current page is categories, homepage, content page
2) Than you condition for that all in your sidebar.php file
Forum: Fixing WordPress
In reply to: Page-specific CSS elementsI think you have to use condition for this……..
//Get id of current page <?php $var = get_the_ID(); if($var == "Your page id") { ?> your style here...... <?php } ?>
Forum: Plugins
In reply to: [Smooth Slider] [Plugin: Smooth Slider] Custome stylesheet not applyingTry this,
may it work…………..Add this code in your style.css
.jcarousel-skin-default .jcarousel-clip-horizontal {
padding: 0 20px !important;
width: 951px !important;
}