Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3407305
Is there an additional traffic statistics function?
Closed

Comments

  • Alice started the conversation

    Does the Soledad theme have the function of adding traffic statistics?

    Displayed in the front end of the website

  •  2,541
    PenciDesign replied

    Hi,

    Unfortunately, the Soledad theme doesn't include this feature. You can install the WP Statistics plugin at this link: https://wordpress.org/plugins/wp-statistics/

    Regards,
    PenciDesign.



  • Alice replied

    OK

    In addition, I would like to ask if there is a tree function for article classification?

  •  2,541
    PenciDesign replied

    Hi,

    Do you mean the table of content? Please send me the screenshot.

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Unfortunately, the Soledad theme doesn't include this feature. We'll consider adding this in the future theme update.

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Please sent me your site URL.

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Do you mean to add the border to all the footer widgets?

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Here is an HTML & CSS code of the content you've requested, you can insert it in the post editor screen:

    .custom-box .custom-box-heading span {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--pcaccent-cl);
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
    }
    .custom-box .custom-box-content {
      border: 5px solid var(--pcaccent-cl);
      padding: 20px;
    }

    HTML Code:

    <div class="custom-box">
        <h4 class="custom-box-heading">
            <span>Heading Text</span>
        </h4>
        <div class="custom-box-content">
            <p>Lorem, ipsum dolor sit amet, consectetur adipisicing elit. Libero odit accusamus magni quibusdam ipsam nulla harum, omnis voluptatum deleniti atque. Quaerat rerum quod inventore? Optio eum nulla debitis maxime nobis.</p>
        </div>
    </div>

    Regards,
    PenciDesign.

  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Please add this CSS code to your site:

    .custom-box .custom-box-heading h4 {
      margin-bottom: 0;
    }

    Regards,
    PenciDesign.



  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Please modify the code like the following below:

    .custom-box .custom-box-heading h4 {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
    }

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Please modify the CSS code like the following below:

    .custom-box .custom-box-heading {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
    }

    Regards,
    PenciDesign.



  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    The code I sent already included the color properties: https://pencidesign.ticksy.com/ticket/3407305/#comment-18104864

    You can modify the var(--pcaccent-cl); to any color code you want to show (https://htmlcolorcodes.com/)

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Please modify the code like the following below:

    .custom-box .custom-box-content {
      border: 5px solid #62C1CE;
      padding: 20px;
    }

    Regards,
    PenciDesign.


  •   Alice replied privately
  •  2,541
    PenciDesign replied

    Hi,

    Please add this CSS code to your site:

    .custom-box .custom-box-content p:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    Regards,
    PenciDesign.