jitendrajoshi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Xml sitemap errorCan you try setting ‘Permalink’ to ‘Default’. Once the XML sitemap is generated you can try setting ‘Permalink’ to your custom choice.
thanks
Forum: Fixing WordPress
In reply to: Wocommerce help! Update cart text!Just add the following custom CSS rules to your stylesheet
.woocommerce-message { text-align: center; padding-right: 228px !important; } .woocommerce-message .wc-forward { display: none; }
Forum: Fixing WordPress
In reply to: Wocommerce help! Update cart text!I can take a look if you post the link to your website/product page.
Forum: Fixing WordPress
In reply to: Add a link to my own home pageYou should already have ‘Home’ page under Appearance > Menus > View All
If not, follow this article:
https://www.wpbeginner.com/wp-themes/how-to-show-home-page-link-in-wordpress-3-0-menu/Forum: Themes and Templates
In reply to: Change colour on header areaEdit style.css line 76
#header { float: left; width: 900px; padding: 20px 20px 0 20px; margin: 5px; background: url(images/header_bg.png) no-repeat ; }
Forum: Themes and Templates
In reply to: Change colour on header areaJust upload your re-size logo to something like Width: 150px | Height: 100px and your header height will be reduced automatically.
thanks
Forum: Themes and Templates
In reply to: Change colour on header areaThe following should move your page links to right:
#navi { background-color: #999999 !important; float: right; }
thanks
Forum: Themes and Templates
In reply to: Change colour on header areaTry using
/* For Header */ #header { background-color: #E2E2E2 !important; } /* For navigation */ #navi { background-color: #999999 !important; }
Forum: Themes and Templates
In reply to: Change colour on header areaHi,
You will need to add separate CSS rule for bith header and navigation as follows:
/* For Header */ #header { background-color: #E2E2E2; } /* For navigation */ #navi { background-color: #999999; }
Forum: Fixing WordPress
In reply to: Reduce margin top on eclipse themeJust add a custom CSS rule in your style.css
#main_header { margin-bottom: 0 !important;; }
thanks
Forum: Fixing WordPress
In reply to: Post/page layoutYou can make use of Page Builder plugin to have both layout and Tabs done.
https://www.ads-software.com/plugins/page-layout-builder/thanks
Forum: Themes and Templates
In reply to: Admired Theme Style.css sheet missingHi,
I had a look and you style.css is not empty. Can you please clarify as to which file is empty?
thanks
Forum: Themes and Templates
In reply to: Awesome theme helpYou should resize the logo and add the following css rule:
.sitetitle { height: 200px; width: 200px; }
Upload the logo with required dimensions and also adjust the css rule height & width as per your image size.
If nothing is updated after adding the CSS rule, please make sure your WordPress editor has file writing permissions: https://codex.www.ads-software.com/Appearance_Editor_SubPanel
thanks