athena.mekis

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: Naturo Pro: How can I Remove "No Comments" from Posts #120948
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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;}

    in reply to: Naturo Pro: How can I Remove "No Comments" from Posts #120869
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    For Naturo Pro, the code is

    .postmeta {display:none;}
    .post-comment{display:none;}

    Thank you,

    in reply to: Read More Button Hover Color #111403
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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

    in reply to: Read More Button Hover Color #111232
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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”

    in reply to: Blog for Naturo Pro #111196
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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!
    Athena

    in reply to: Blog for Naturo Pro #111194
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    Hi 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?

    in reply to: accordion #96918
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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
    });

    in reply to: accordion #96917
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    www.athenamekis.com/rfmacdonaldco

    in reply to: accordion #96185
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    How about being able to close as well as open the accordion?

    in reply to: Reviews and Testimonials #96179
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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.

    in reply to: Float Submenu Right #96178
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    Dave,

    This is a perfectly fine solution.

    Complete. Thank you!

    in reply to: Float Submenu Right #95859
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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.jpg

    Thank you.

    in reply to: Internet Explorer Menu Compatibility Issue #95760
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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!

    in reply to: Float Submenu Right #95476
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    Image Link: https://imgur.com/uMlw9CR
    Direct Link: https://i.imgur.com/uMlw9CR.jpg

    The 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.

    in reply to: .Entry-Title as Link/Button #95329
    athena.mekisathena.mekis
    Participant
    • Topics: 7
    • Replies: 18
    • Total: 25
    Member since: August 15, 2017

    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.

Viewing 15 posts - 1 through 15 (of 18 total)