Zakir Sajib
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To Change "class" of widgets!!Are you using child theme?
Forum: Fixing WordPress
In reply to: Change the default action attribute in my search form?yes possible.
if you have page called search.php then you can use this in action.
Better to have/create a page in dashboard by same name(Search) and in action you just put “search”
Forum: Fixing WordPress
In reply to: blank index page@bucephale4x4: good to hear it worked.
Forum: Fixing WordPress
In reply to: blank index page@andrew,I understand where are you coming from.
I will never ask them to write their login details in this forum.
I will better share my email or skype ID so they can come and share.
Hope I am not violating forum rules ??
Forum: Fixing WordPress
In reply to: blank index pageGood question.
Now activate those plugins and see what happens ?
if the problem appears it means those plugins are not good enough or not compatible with your wp version.
so deactivate and find better plugins. I can help you on this if you need a help.
Forum: Fixing WordPress
In reply to: blank index pagein dashboard, go to settings and then Readings.
Find out Front page displays and
select the “Your latest posts”Forum: Fixing WordPress
In reply to: blank index pageor you can share with me wp login details.
Forum: Fixing WordPress
In reply to: blank index pageok then deactivate those plugins ND follow my first reply.
Forum: Fixing WordPress
In reply to: blank index pageYou using security plugins and thats why you getting those messages.
Can you login or not?
Or access via ftp, rename those plugins…
and try login again.
Forum: Fixing WordPress
In reply to: blank index pageLogin to your site
in dashboard, go to settings and then Readings.
Find out how Front page displays was set.
You may select static page as your front page.
And from drop down box select your desired page which you want to display as front page so when you hit https://parez.fr/ that page will load.Try now.
Forum: Fixing WordPress
In reply to: How to change fonts on Visual Editor modePleasure ??
Forum: Fixing WordPress
In reply to: How to change fonts on Visual Editor modeYes should work.
Check and test.
also put
font-weight: 300; /*change according to your desire*/Forum: Fixing WordPress
In reply to: How to change fonts on Visual Editor modeFor further information, read the wp codex:
Forum: Fixing WordPress
In reply to: How to change fonts on Visual Editor modeSo your custom-editor-style.css file should contain at least:
@font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 300; src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJXZ4362_PV5aPD5jU0S2ELI.woff) format('woff'); } @font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 400; src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/y7lebkjgREBJK96VQi37ZqfTCPadK0KLfdEfFtGWCYw.woff) format('woff'); } @font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 700; src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJRLE7eCesZRIBkkq27EgTqg.woff) format('woff'); } body{ font-family:'Roboto Slab', Arial, sans-serif; font-weight: 300; /*change according to your desire*/ }
Forum: Fixing WordPress
In reply to: How to change fonts on Visual Editor modeYou have to write like this:
body{ font-family:'Roboto Slab', Arial, sans-serif; }
It seems Roboto slab is a custom font so you need to add this as well.
So before above code, write:
@font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 300; src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJXZ4362_PV5aPD5jU0S2ELI.woff) format('woff'); } @font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 400; src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/y7lebkjgREBJK96VQi37ZqfTCPadK0KLfdEfFtGWCYw.woff) format('woff'); } @font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 700; src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJRLE7eCesZRIBkkq27EgTqg.woff) format('woff'); }
so in a nutshell, custom-editor-style.css should contain at least:
@font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 300; src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJXZ4362_PV5aPD5jU0S2ELI.woff) format('woff'); } @font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 400; src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/y7lebkjgREBJK96VQi37ZqfTCPadK0KLfdEfFtGWCYw.woff) format('woff'); } @font-face { font-family: 'Roboto Slab'; font-style: normal; font-weight: 700; src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(https://themes.googleusercontent.com/static/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJRLE7eCesZRIBkkq27EgTqg.woff) format('woff'); } body{ font-family:'Roboto Slab', Arial, sans-serif; }