Softound Solutions
Forum Replies Created
-
Forum: Themes and Templates
In reply to: moving content up on the pagePlease send me your site link.
Forum: Themes and Templates
In reply to: [Kyma] right sidebar and search fieldHi,
You can remove and assign them in footer, here is an option to do that.
Goto: Appearance->Widgets(Right side you can see list of widget locations and assigned widgets inside each list, some may be empty).Forum: Themes and Templates
In reply to: moving content up on the pageHi,
Try this CSS
.entry-title{margin-bottom: 0.2em;}Forum: Themes and Templates
In reply to: Change width of submenu items – District themeTry this CSS
ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul {left: 225px;}Forum: Themes and Templates
In reply to: Change width of submenu items – District themeHi,
Try the following CSS
.sf-menu ul{width:225px;}Forum: Themes and Templates
In reply to: Increase width for post & pageYou are welcome, please set this topic as resolved.
Forum: Themes and Templates
In reply to: [i-craft] Related Products SliderOk, let me find some solution. if possible
Forum: Themes and Templates
In reply to: [i-craft] Related Products SliderDo you need to list the related products by specific category ?
Forum: Themes and Templates
In reply to: Correct Style sheet will not loadDequeued the error stylesheet and enqueue the proper stylesheet.
Forum: Themes and Templates
In reply to: Increase width for post & pageHi,
Your template uses bootstrap, so you no need to modify any CSS,
Open your page template file and change the following class
class=”col-sm-8″
TO
class=”col-sm-12″
Forum: Themes and Templates
In reply to: [Customizr] Categories and Tags Not WorkingTry to disable all the plugins and switch to default theme, then try to add category.
Forum: Themes and Templates
In reply to: [Customizr] Categories and Tags Not WorkingAre you using any cache plugins ?, if so disable them and try to add category once again.
Forum: Themes and Templates
In reply to: a link css for a category title not changingHi,
Do you mean “THE VIRTUES, THE CHAT, THE MARK OF CAIN” are items inside category ?
You are welcome, set this topic as resolved.
Forum: Localhost Installs
In reply to: Can access site but not wp-adminYour .htaccess file should be like this
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /mywebsite/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /mywebsite/index.php [L] </IfModule> # END WordPress