Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing width of single postadd it in your style
.content-without-sidebar{
Width:100%
}Forum: Themes and Templates
In reply to: Showing Slider in main page onlyHello amirkianizadeh,
Please put your slider code in below condition:
<?php if(is_home()){ //Put slider code here } ?>Thanks
Forum: Themes and Templates
In reply to: Make the menu stick and add thumbnail imagesHello sipblack,
You can make your menu sticky by adding the below line css code in your custom css file
nav {
background: #fff none repeat scroll 0 0;
left: 25%;
position: fixed;
z-index: 1;
}Forum: Fixing WordPress
In reply to: Don't show youtube video on mobile devicesHi,
You can add style to make it display none for mobile devices using media queries.
Thanks
Hello Alex Phelps,
Have you checked is their any setting in theme option about the templates override if not it should work in all case.Can you please check.
Thanks
Forum: Fixing WordPress
In reply to: How can I change the titles on my category and tag pages?Hi,
Have a look at this article. It creates a custom option in every page for custom page title.
https://digwp.com/2010/04/custom-page-titles/
Thanks
Hello mymusicking,
Add below line code in style.css file
p{background:none!important;}
Forum: Fixing WordPress
In reply to: recover wordpress database or somethingHi,
Try Updating your wordpress manually and see if your problem is solved.
https://codex.ww.wp.xz.cn/Updating_WordPress#Manual_Update
Thanks
Forum: Networking WordPress
In reply to: Unable to access Network Admin dashboardHi,
Had you made change in this table “wp_site”.
This table contains only domain name without http and folder path.
When you search replace the links with http are replace and the links without http are not replaced.
I recommend you to check wp_site once more manually.
Thanks
Hello
You have added the code in wrong place just add it above the line
/*# sourceMappingURL=style.css.map */ which is at the bottom of this file.Thanks
Forum: Fixing WordPress
In reply to: wordpress installWelcome.. 🙂
Forum: Fixing WordPress
In reply to: MySQL version, WP requirements and 500 errorHi Jason,
Please check if MySQL service is running.
Try checking to see if the PHP MySQL extension module is being loaded
<?php
phpinfo();
?>If it is not there, add the following line to the php.ini file and restart the apache.
extension=php_mysql.dll
P.S. I would advise to consider MySQL extension as deprecated and to use MySQLi or even PDO for working with databases
Thanks
Hello mymusicking,
In which you file have you added the above code ?
Forum: Fixing WordPress
In reply to: Echo shortcode if post is in specific categoryHi,
I think you should have a look at this.
https://ww.wp.xz.cn/support/topic/determining-whether-a-category-is-top-level-or-not?replies=3
thanks
Forum: Themes and Templates
In reply to: [Magazine Basic] 100% width for text on pagesHello triplemaya,
In theme their must setting for applying full width of page which will solve your problem because though you have commented the sidebar in you page the page wrapper has class=”c10″ and in css the ‘c10’ class has width defined is 83.33% so that why its taking 83%.
So please check the theme setting or Either add the below code of css in your theme style.css file
#primary {
width: 100%;
}Thanks