Mukesh Panchal
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at all[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
/************************* WIDGETS ************************************/ #inside-widgets h6.widgettitle { color:#222; /*border-bottom:1px solid #ccc;*/ text-transform:uppercase; padding:1em .3em .5em; font-family: 'arial' } #inside-widgets ul { list-style:none; margin:0 0 1.6em; font-size:1em; } #inside-widgets ul li a,ul.txt li { color:#222; height:1%; /*background:url(images/li.png) no-repeat 0;*/ line-height:1.2em; /*border-bottom:1px solid #ccc; display:block; padding:6px 0 6px 8px;*/ } #inside-widgets ul li a:hover,ul.txt li:hover { color:#000; background-color:#F0F0F0; /*background:#eee url(images/li.png) no-repeat 2px 50%;*/ background: #F4F4F4; border-color: #C0C0C0; color: #333; }
put this in your theme code change it
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at alli solve problem for your test page.
change the css that i give u but how i send u.Forum: Plugins
In reply to: [Facebook AWD All in one] [Plugin: Facebook AWD All in one] Likes are gonewhat problem u face.
one day it’s ok and then second day it generate it’s amazing rosa.Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at allhyy julian,
what happen no sorry plz u r not waste my time this groupe is for solving this kind of problem .
u give full description what u have and what u need u have not big issue for this problem just understanding mistake for both.NO Sorry Please
permalink of your pages is change thats wy u got the problem
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at allhii julian…
u have not pefect idea what u have to do u r give the test page and that page contaian the table in widget area the how i give u reply.
i m giveing perfect answer but u use the table in your page then hoe it effect.
first deside where u have to use the table in your site.how i debug my wordpress
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at allfor your tilel line no 641
#inside-widgets h6.widgettitle {
border-bottom: 1px solid #CCCCCC;
color: #222222;
font-family: ‘arial’;
padding: 1em 0.3em 0.5em;
text-transform: uppercase;
}for your table li line no 655
#inside-widgets ul li a, ul.txt li {
color: #222222;
display: block;
height: 1%;
line-height: 1.2em;
padding: 6px 0 6px 8px;
}Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at allhi julian,
u r using this in widget area and u change the general table what it give the result u r change it in your css in widgetin your site see this code in css
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {
border: medium none;
float: left;
}u have to change this ok
u have skype id then give i solve your problemForum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at allin your site how many table u r using. this is general table css
if u use the more table then u use the main div id and then your table id for this if u give your site link then i give u perfect result..Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] No border at all.wp-table-reloaded-id-2-no-1 {
background-color: #CDCDCD;
border-spacing: 1px;
font-size: 8pt;
margin: 10px 0 15px;
text-align: left;
width: 100%;
}put this in your table css and check
problem in your theme.
because database is set according to your theme.
ckeck themeForum: Plugins
In reply to: wp ecommerce variation imagesfor this u assign image for each variation product then use variation-images plugin.
your problem is solve…..Forum: Fixing WordPress
In reply to: Variations have different pictures – but they don't display…for this u assign image for each variation product then use variation-images plugin.
your problem is solve…..Forum: Plugins
In reply to: [Plugin: WP e-Commerce] Display Stock Countfor this solution change this code in wpsc-single-product.php
<?php if(wpsc_show_stock_availability()): ?>
<?php if(wpsc_product_has_stock()) : ?>
<div id=”stock_display_<?php echo wpsc_the_product_id(); ?>” class=”in_stock”><?php _e(‘Product in stock’, ‘wpsc’); ?></div>
<?php else: ?>
<div id=”stock_display_<?php echo wpsc_the_product_id(); ?>” class=”out_of_stock”><?php _e(‘Product not in stock’, ‘wpsc’); ?></div>
<?php endif; ?>
<?php endif; ?>To this code:
<?php if(wpsc_show_stock_availability()): ?>
<?php if(wpsc_product_has_stock()) : ?>
<div id=”stock_display_<?php echo wpsc_the_product_id(); ?>” class=”in_stock”><?php _e(‘Product in stock’, ‘wpsc’); ?><?php echo wpsc_product_remaining_stock(); ?></div>
<?php else: ?>
<div id=”stock_display_<?php echo wpsc_the_product_id(); ?>” class=”out_of_stock”><?php _e(‘Product not in stock’, ‘wpsc’); ?></div>
<?php endif; ?>
<?php endif; ?>then chack it …