DBCF WebAdmin
Forum Replies Created
-
Hi Asya, I am think you meant 2.5.59, yeah? I am running the latest version and before I ran the update I didnt have any site health issues but now I have a few. The only one common with kwsapphire (@kwsapphire) is the active PHP session issue. Please advise how to correct this. A few months back my hosting folks update the PHP and I had no other issues before the photo gallery update. Thanks much, Dione
Thanks for the reply Asya, but I am not able to add going for one at a time either. Please help as soon as possible. Thanks much!
I am having the same issue. grrrr
Forum: Themes and Templates
In reply to: [GeneratePress] Body and Container Background ImageHi Leo, Sorry for the delay…wasn’t sure I’d get a response. I did learn/end up understanding where to set the background image in appearance | customizer and then add the shadow background just one the home page editing them all with elementor. Thank you! Dione
Forum: Plugins
In reply to: [Strong Testimonials] Testimonial Text ColorThank you so much, Chris! I am making a backup and then will work on this. I’ll post back in a few hours. Thanks again!
Forum: Plugins
In reply to: [Strong Testimonials] Testimonial Text ColorHey Chris, should I start a different topic …I have a question about adding author and other customization to this post template??
I saw in a different response https://wordpress.org/support/topic/about-the-testimonial-read-more-link/ that you can walk us through creating a new template. I am comfortable doing so, following steps. I’ve done it before.
I’d like to possible have the testimonial show up on a page with my look.
Forum: Plugins
In reply to: [Strong Testimonials] Testimonial Text ColorYes, my url does look like that. I was looking at a branched off article, from the article link you gave earlier …and was starting to realize that it is a post. I was starting to think I’d have to go into the php code. THANK YOU SO MUCH!!! This works.
Forum: Plugins
In reply to: [Strong Testimonials] Testimonial Text ColorHi Chris,
I am feeling that I don’t understand css as easily as I would like to think. I’d found that article, but didn’t follow all.And this doesn’t seem to be working for me either. I tried both.
Please excuse me I didn’t mention that while I am using the display view, default template, it is when I click Read more, I get the full page with the picture and text below …this text, I am not getting to turn white.
In my theme, Generate Press, I do have the Colors | Body | Text set to the same color as my Colors | Body | Background color. I need this to remain for the text in a virtual page/pop-up box from my events plugin. So, I am hoping I can control this read more (virtual page??) text, to override my theme.
When you gave the syntax to override my theme …after .testimonial …what is the p and the -client mean?
Forum: Plugins
In reply to: [Strong Testimonials] Remove Border from SlideshowI am not sure if I was supposed to know this …but I have now all of the code below …and the border is finally gone. Is this okay?
.strong-view.default .testimonial {
border: 0;
}.strong-view.default .testimonial-inner {
border: 0;
}.strong-view .wpmslider-viewport { border: 0 !important; }
Forum: Plugins
In reply to: [Strong Testimonials] Remove Border from SlideshowThanks Chris, but that did nothing. I am putting it in the Additional CSS portion of my theme. Is this the correct place? I am entering this in a html model using beaver page builder …if that makes any difference.
I had also tried the following:
.strong-view.default .testimonial-inner {
border: 0;
}.strong-view.default .testimonial {
border: 0;
}Forum: Themes and Templates
In reply to: Extra Spacing in Tablethank you so much crouchingbruin! what to use instead of tables is something i realized i need to learn. thank you for guiding to exactly what. i have gotten somewhat familiar with div and i have seen some reference to media in the theme css (not knowing it was called queries). i totally appreciate your response!
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Table cells not evenI believe my fix was to implement and learn how to fix my child theme
Forum: Themes and Templates
In reply to: Get rid of black border around themeThank you @filterjoe and susantau!!!
Forum: Fixing WordPress
In reply to: twentysixteen full width template/no sidebarThank you so much! I have been a little hard headed in the medium between not rewriting code and actually paying attention to what the code is doing and how it is said. But, as I am getting back into …I am reminded how much I love it.
I also want to get rid of the space (I suppose it is the header) at the top. I believe I saw a post about that for this theme. Thank you!
Forum: Fixing WordPress
In reply to: twentysixteen full width template/no sidebarHi Michael, It is me again. So, I had lost my php and css from 3 weeks ago. And now, trying to create it. But, I notice that I have a large white space on the left. Could you help me to figure out why my page isn’t flushing to the left?
css
/* Theme Name: Twentysixteen-child Theme URI: twentysixteen Description: Twenty Sixteen Child Theme Author: Dione Castro Author URI: nothing Template: twentysixteen Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Text Domain: Twentysixteen-child */ h1 { font-family: Verdana; font-size: 50px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: none; color: #cc0000; } h2 { font-family: Verdana; font-size: 50px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; text-transform: none; } @media screen and (min-width: 56.875em) { .full-width-page .content-area { float: left; margin-right: -100%; width: 100%; } } td { font-family: Arial; font-size: 12px; border-width: 0 0px 0px 0; } table { border-collapse: separate; border-spacing: 0; border-width: 0px 0 0 0px; }php
<?php /** * Template Name: Full Width Page * * @subpackage Twenty_Sixteen child theme */ get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php // Start the loop. while ( have_posts() ) : the_post(); // Include the page content template. get_template_part( 'template-parts/content', 'page' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } // End of the loop. endwhile; ?> </main><!-- .site-main --> <?php //get_sidebar( 'content-bottom' ); ?> </div><!-- .content-area --> <?php //get_sidebar(); ?> <?php get_footer(); ?>