Nikhil Chavan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help Changing Size of Image SliderHey mkmossop, This is all you need –
nav.footer ul { margin: 0 auto !important; width: 30%; } nav.footer { float: none !important; } .flexslider-holder{ margin: auto auto 75px !important; }
to change the whitespace between slider text and grey area, change the value 75px to your needs in .flexslider-holder
i’ve already reduced it down from 118px to 75px here.Forum: Fixing WordPress
In reply to: WooCommerce Left Margin – Shop & Product Pages@cgiblin your problem seems to be fixed already!
EDIT – didn’t notice your question is 8 months old.
Forum: Fixing WordPress
In reply to: WooCommerce Left Margin – Shop & Product Pages@shredpress – here you go, put this in your CSS file,
div#container { width: 100%; height: auto; } div#content { width: 68%; float: left; padding: 4rem; box-sizing: border-box; }
EDIT – didn’t notice your question is 2 month old.
Forum: Fixing WordPress
In reply to: WooCommerce Left Margin – Shop & Product Pages@subcutanea – this should fix your issue – put this in your CSS file.
div#container { margin: 0 auto; max-width: 990px; padding: 60px 0; position: relative; width: 100%; } .woocommerce-page #sidebar { float: left; } #content { float: left; margin: 40px 20px 40px 0 !important; width: 680px !important; }
Forum: Fixing WordPress
In reply to: Navigation drop down menuHere you go –
.main-navigation ul li > ul li { margin-right: 0 !important; height: auto !important; margin-top: 10px !important; } .main-navigation ul li > ul li a { line-height: 1.7em !important; }
if you want to change the spacing sub-menu items, change the margin in .main-navigation ul li > ul li. if you want to change line spacing, change line-height: 1.7em !important;.
Hope that helps!
Forum: Fixing WordPress
In reply to: Hide divider in tableTry this –
.entry td { border-right: 0 !important; }
Forum: Fixing WordPress
In reply to: Navigation drop down menuadd this following code to your CSS file –
.main-navigation ul li > ul { display: none !important; } .main-navigation ul li:hover > ul { display: block !important; }
I think you have installed some plugin for dropdown menu, that’s adding inline CSS to menu items, the above code should fix the issue, or you can try disabling that plugin.
Hope this helps!
Forum: Fixing WordPress
In reply to: Hide divider in table@kristastryker, I am assuming you want remove the line besides the form, this CSS should work for that.
.entry td { border-right: 0 !important; }
Hope that helps!
Forum: Plugins
In reply to: [WP Twitter Feeds] Margin erroryou need to add some custom CSS, as you are a beginner, I suggest you use a plugin for that, for Eg Simple Custom CSS .
this adds menu option under Appearance > Custom CSS. there paste in the following code
.rsidebar ul li { margin-left: 0 !important; }
Forum: Fixing WordPress
In reply to: Woocommerce button edityou’ll have to give us the link to that page where you need changes, so that we can look into it.
Forum: Fixing WordPress
In reply to: Widget AreasYour code in home.php needs to be changed slightly.
From –
<?php get_header(); ?> <div id="main-content"> <?php if (is_active_sidebar('arphabet_widgets_init')) : ?> <div class="widget-area"> <?php dynamic_sidebar('arphabet_widgets_init'); ?> </div> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
To –
<?php get_header(); ?> <div id="main-content"> <?php if (!is_active_sidebar('Home right sidebar')) : ?> <div class="widget-area"> <?php dynamic_sidebar('Home right sidebar'); ?> </div> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
tell me if this works.
basically, functions
is_active_sidebar
&dynamic_sidebar
will receive id or name of the sidebar.Forum: Everything else WordPress
In reply to: CODEX theme?It’s a Wiki, MediaWiki.
There are some wiki themes for WordPress that you can try.
Forum: Fixing WordPress
In reply to: unable to log in to WP-AdminNo,
FTP details are not related to the back end of your WordPress, but rather to your server, where all your WordPress files are stored.So, you need to contact your hosting provider about those details.
Forum: Fixing WordPress
In reply to: Unable to change headerhey there,
you will probably find logo image under
/images/logo.png
. there should be a/images
directory under your theme folder.
if you want to change the image, maybe directly change path to new image instead of replacing the image.header should be changed from
header.php
file in your theme directory.you can edit this file from wordpress theme-editor by going to
Appearance>Editor
and switching to header.php on the right sidebar.make changes to the file only if you know what you are doing, in anyways take backup of all the code before making any changes.
Forum: Fixing WordPress
In reply to: unable to log in to WP-Adminwhich plugin did you install?
about FTP, You should get FTP details from your hosting provider.
it contains – hostname, username, password.
with this details you can log in to your server using FTP client application Eg – FileZillahere is basics of FileZilla, about how to use it.
basically with FTP you are able to access all the files and folders on your server, from there you can rename the folders as @corygibbons mentioned.