djenciduquene
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SSL error after installed, please helpThis is probably caused by you being logged in, and asking unprotected http requests
Try logging out and visit your website
You will have no issues I figure
Forum: Fixing WordPress
In reply to: Remove header and footer on a specific pageThe header and footer will only not display on that particular page.
I don’t see any reason not to use it.
Unless you need certain aspects from the header or footer still being displayed
Forum: Fixing WordPress
In reply to: Remove header and footer on a specific pageYou’re welcome laura
For header you follow the same CSS
`.page-id-2114 header {
display: none;
}Again about page will not display header
Good luck with your website!
Forum: Themes and Templates
In reply to: [WP-Forge] remove image borderplace your url one time so we can check
Forum: Plugins
In reply to: [Yoast SEO] WP Super Cache blocking YoastI wouldn’t use cache plugins. Better do this yourself in htaccess file
After that you combine all of the javascript
Combine all of your CSSMinify CSS and Javascript with a minifier
Run your website again
It will load minimum 1 second faster than with any cache plugin on the market
A good source to combine javascript and CSS step by step is found here
Forum: Fixing WordPress
In reply to: Submit button not workingCheck the javascript that is running for the submit function. Did you change the button’s name to submit?
if yes you should change “value” again to what it was. I guess it should be “2015OfferingCircularweb.pdf”
If this is not the reason than you should reinstall gantry
Because many javascript files are not being loaded on the website
(index):84 Uncaught ReferenceError: GantryPill is not defined
(anonymous function) @ (index):84
(anonymous function) @ mootools.js?ver=4.4.2:375
(anonymous function) @ mootools.js?ver=4.4.2:33
Array.implement.each @ mootools.js?ver=4.4.2:40
invoke.fireEvent @ mootools.js?ver=4.4.2:374g
@ mootools.js?ver=4.4.2:514Forum: Fixing WordPress
In reply to: very slow site loaduse gtmetrix or pingdom to scan your website. Follow recommendations.
Use cache, CDN, Delete plugins you don’t need etc…W3 total cache is a good plugin to start with
Forum: Fixing WordPress
In reply to: Remove header and footer on a specific pageDo this in CSS.
Find the ID of your page
You can find the id when you check the source code of the page. Or in your dashboard – pagesCSS
.page-id-2114 footer { display: none; }
Where 2114 represents the id of the page you want the footer to be removed.
2114 is the id of your ‘about’ pageForum: Fixing WordPress
In reply to: Problems with wp-admin accessHaving the same problem for one of my sites on Chrome. On firefox and Safari I have no issues
Probably caused by Chrome interfering with the captcha check on wordpress admin page.
Or maybe plugins like clef could cause problems too
Forum: Fixing WordPress
In reply to: How do I find the image ID?Try using the custom CSS function of your theme (if there is one)
Else you could add in your style.cssimg.alignleft { margin: 0; }
I suggest using margin because now it looks very strange.
You could easily add margin:5px; or 10px…
This will move margin from the image on the left at your homepage.Use the inspector tool from firefox or chrome to identify your CSS classes and id’s.
I hope this will help you…
On your latest question I don’t realy understand what you mean with widget bar on top… and space between your menu?
Forum: Fixing WordPress
In reply to: Home page, posts and pages appear doubleYou should better reinstall your theme and use a child theme to do the editing.
Make a backup of your database and delete your theme. And reinstall it again. Or use another one, it is not responsive which will do you no good in the search results later on…
Forum: Fixing WordPress
In reply to: Admin Page Blank Again??Did you edit your functions.php? Or edit another php page?
Sometimes blank screen occurs when you add too many white space between the end of your code and the php end tag ?>
Could also be caused by letting to much space between begin php tag and begin of your code.
Forum: Fixing WordPress
In reply to: How to change font in Menu?nav#mk-main-navigation { float: left; font-family: sans-serif !important; // Choose your font here }
Using a child theme with a new style.css is best practice…
Still you can adjust your style.css in the parent stylesheet or you can maybe use a function in your theme settings to use custom CSS.
I’m almost sure your font is set by using inline CSS.
A way to change the font in the menu would be by adding !important next to your CSS codeI hope this works for you