ikaring
Forum Replies Created
-
Forum: Plugins
In reply to: How to remove box around title/text excerpt on slide?I dont think so.
Ah, you dont need visibility: hidden; on .slide-excerpt-border.
That hides text inside.
Sorry, I just checked syntax error on that.Plus, you just need to set background none on .slide-excerpt
Forum: Plugins
In reply to: How to remove box around title/text excerpt on slide?Search the following block in your style.css and remove the line.
html > body .slide-excerpt-border { background: none; border: 0px none !important; display: none; visibility: hidden margin: 0 auto !important; position: relative; text-align: center; z-index: 8; }Also add ; after
visibility: hiddenlike sovisibility: hidden;Forum: Plugins
In reply to: How to remove box around title/text excerpt on slide?It seems you have set
display: noneonhtml > body .slide-excerpt-border.
That would hide everything inside.Forum: Plugins
In reply to: How to remove box around title/text excerpt on slide?As for styles in slide, they are defined in plugin’s css.
You can overwrite them by setting rules in your child theme style.css which I wrote in previous comment.Forum: Plugins
In reply to: How to remove box around title/text excerpt on slide?That is defined in the plugin’s css.
.slide-excerpt {background-color: #fff; filter: alpha(opacity=80); display: block; margin: 10px; opacity: 0.8; padding: 0; position: absolute; z-index: 8;}First, pls check the plugin has a setting page or not.
If it does not, you can overwrite them in style.css of your child theme.
In order to overwrite them, you need to add more specific css rule like:#genesis-responsive-slider .slide-excerpt { background-color: transparent;/* remove background color */ filter: alpha(opacity=100); opacity: 1; color: black;/* set font color */ }Forum: Plugins
In reply to: How to remove box around title/text excerpt on slide?In style.css of your theme, there are background and padding rule:
.home h4.widget-title { background: #f5f5f5; padding: 7px; width: auto; }You can remove gray boxes by change them to like
.home h4.widget-title { background: transparent; padding: 0; width: auto; }It is recommended to use child theme to customizing themes, since upgrading the theme will delete your customizes.
Regarding question 2, I dont see any text on the slider. Which text/title are you trying to change color?
Forum: Fixing WordPress
In reply to: WordPress custom post type children post paginationI think you can add ‘post_parent’ parameter to WP_Query argument.
Forum: Fixing WordPress
In reply to: WP_POST_REVISIONS no longer working?There is a note in Codex, please check.
https://codex.wordpress.org/Editing_wp-config.php#Post_Revisions
Note: Some users could not get this to function until moving the command to the first line under the initial block comment in config.php.
Forum: Hacks
In reply to: Adding JS to child themeThere are couple of problems I can find.
One is that you load some js files twice in head tag and end of file.Second, it is necessary to put the following js before loading scrolling-nav.js and after jQuery.
Or you just change ‘bind’ to ‘on’.$('a.page-scroll').bind('click', function(event) {
to
$('a.page-scroll').on('click', function(event) {Or it is better add class ‘page-scroll’ on ‘.main-nav li a’, if you can.
Forum: Hacks
In reply to: Adding JS to child themeWhat errors do you get?
I dont see any now.Forum: Fixing WordPress
In reply to: Problem shifting WordPress to rootI think you can follow “Moving a Root install to its own directory” section of this page.
http://codex.wordpress.org/Giving_WordPress_Its_Own_DirectoryYou can skip 1,3, and 6, since you have already moved WP core to subdirectory.
Forum: Hacks
In reply to: Adding JS to child themeCould you replace scrolling-nav.js on your server, for me to check.
It remains the same as before.Forum: Fixing WordPress
In reply to: How to Add Content & Heading Tag to Category PagesIt is not recommended to use plugins which is not maintained for long time.
For example, WP changed backend program of visual editor since ver.4.3, and that plugin last updated before then.
Even if it works now, it is doubtful in the future since WP will continue to be upgraded.I understand it looks complexed, however, using child theme is to avoid total mess.
When something go wrong, you can just quit using that theme and switch back to parent theme or other theme.If you want to change contents for specific category, say Doctor Games category ( its slug is doctor-games ), duplicate category.php and rename it category-doctor-games.php.
category-{slug}.php is the format. This template file is only used for Doctor Games category page.
You can add as many template file as you need for specific category, and edit content part for each category.There are some ways to edit contents for category pages via admin pages, but at least you need to prepare child theme and to edit template file first.
some ways like:
– private post with custom fields
– create widget areaThat would be bit complexed, I guess.
Forum: Fixing WordPress
In reply to: Press This not working properlyHi, I have tested on my site, and I also got 403.
In my case, that was WAF setting of my hosting.
Workaround for my environment was to add the following line to .htaccess.SiteGuard_User_ExcludeSig url-php-rfi“url-php-rfi” part was detected signature of WAF.
Hope this helps somebody.Forum: Hacks
In reply to: Adding JS to child themeIt is ok to leave inline script as below:
<!-- Script for scrollNav.js --> <script> jQuery(document).ready(function(){ jQuery('.main-nav li a').addClass('page-scroll'); }); </script>scrolling-nav.js needs the above wrapping code.
Or you can just replace $ with jQuery in scrolling-nav.js, too.