Forum Replies Created
-
AuthorPosts
-
I was just sharing that I had to write the code as follows in order to remove the “No Comments” text. I don’t have any issues. I was sharing my solution. Thank you for asking.
/*Remove “No Comment” text on Blog/Posts page */
.postmeta{display:none;}
.post-comment{display:none;}For Naturo Pro, the code is
.postmeta {display:none;}
.post-comment{display:none;}Thank you,
Hi Chris,
Unfortunately, that didn’t change the color of the span icon on hover. I went ahead and removed the circle icon all together by removing <span> from the content.php page.
Previously:
<p class=”read-more”>“><?php echo of_get_option(‘readmoretext’); ?><span>›</span></p>Now:
<p class=”read-more”>“><?php echo of_get_option(‘readmoretext’); ?>›</p>I even tried: .content-area p.read-more span:hover {color:#447dc0;} but it didn’t work.
Anyway, removing the circle completely worked fine. Items is now closed.
Thank you for your effort.
Athena
Additionally, these two selections are not working in Appearance > Basic Settings. I changed the colors to blue but nothing is happening.
“Select border color for read more button”
“Select border hover color for read more button”Hi SKT,
I figured out the issue, looking around on this support chat. In Appearance > Theme Options > Basic Settings, I needed to change the following: “Blog post page change text content length here” from 0 to 55 (or desired word length.)
This problem has been solved. Please close Topic.
Thank you!
AthenaHi SKT,
The basic blog setup response was not the answer I needed. The answer I was looking for was ticking the “excerpt” option within Post > Screen Options. Unfortunately, it appears the excerpt code is turned off within wp includes > post-template.php. I tried the Advanced Excerpt plugin, but it did not work. How do I turn on <?php the_excerpt(); ?> to get my excerpts to show on my blog “archive” page?
Additionally, here is my specific accordion code. I like that the first accordion is open, but I’d like to be able to click each one closed as well. www.athenamekis.com/rfmacdonaldco
// accordion
jQuery(‘.accordion-box .acc-content’).hide();
jQuery(‘.accordion-box h2:first’).addClass(‘active’).next().show();
jQuery(‘.accordion-box h2’).click(function(){
if( jQuery(this).next().is(‘:hidden’) ) {
jQuery(‘.accordion-box h2’).removeClass(‘active’).next().slideUp();
jQuery(this).toggleClass(‘active’).next().slideDown();
}
return false; // Prevent the browser jump to the link anchor
});www.athenamekis.com/rfmacdonaldco
How about being able to close as well as open the accordion?
SKT Themes has an active support team. I have received answers to each of my questions. With websites, you have to be OK with workarounds. These guys either give a perfect answer or a suitable runner-up. The SKT Themes support team has answered every design and function question I have had and in a quick turnaround time. I highly recommend purchasing an SKT Theme allowing them to support you while you build.
Dave,
This is a perfectly fine solution.
Complete. Thank you!
Dave, The new website URL is www.rfmacdonald.com.
I have 20 items within the “Products > Pumps > By Type” submenu. How do I wrap/position the ul li list so 10 items align left and 10 items align right? I believe I’m supposed to work off of the navigation tag below:
.nav ul li ul li ul li {
width: 50%;
float: left;
padding: 0 0;
text-decoration:none;
border: none;
}Imgur Image Link: https://imgur.com/uMlw9CR
Imgur Direct Link: https://i.imgur.com/uMlw9CR.jpgThank you.
Hi Chris,
I fixed my IE navigation display by placing the “Edge” compatibility in Editor > header.php. My navigation in IE11 now works after placing the following code in the <head></head> section of header.php.
<meta http-equiv=”x-ua-compatible” content=”IE=edge”>
Complete. Thank you!
Image Link: https://imgur.com/uMlw9CR
Direct Link: https://i.imgur.com/uMlw9CR.jpgThe image shows three ul lists. The third list is 20 items long. I would like to make two columns so that all items are shown without having to scroll down.
I know the code involves .nav ul li ul li ul li, but I am unsure how to move the items over. I hope you can assist.
Thank you.
Hi, I have 20 items within a submenu. How do I wrap/position the ul li list so 10 items align left and 10 align right? The code below is not correct but what I’m working off of. I am aware the menu subitem also offers a class option if I need to use it.
.nav ul li ul li ul li {
width: 50%;
float: left;
padding: 0 0;
text-decoration:none;
border: none;
}Thank you.
-
AuthorPosts