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 #3100676
minor issues / sidebar and slider
Closed

Comments

  •  1
    Rebbi started the conversation

    Hello,

    I have two questions please..

    About the sidebar:
    Is it possible to get the heading text (and the line under it) centred?

    About the slider:
    Is it possible to get the category name in capital letters?

    Thanks.
    Rebbi

  •  2,489
    PenciDesign replied

    Hi,

    1. I've checked your site, and the heading content is already centered:

    OrMIVGD.png

    2. Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .penci-featured-content a.cat.featured-cat {
        text-transform: capitalize;
    }

    Regards,
    PenciDesign.



  •  1
    Rebbi replied

    Hi,

    1. I had changed the text to "align left" but would like to keep the heading text (and line below) centered. Is that possible?

    2. Unfortunately did not work (using featured slider style 2)

    Regards,
    Rebbi


  •  2,489
    PenciDesign replied

    Hi,

    1. Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .about-widget .about-me-heading {
        text-align: center;
    }
    .about-widget.pc_alignleft .about-me-heading:before {
        margin-left: -30px;
        left: 50%;
    }

    2. Modify the CSS code like this:

    .penci-featured-content a.cat.featured-cat {
        text-transform: uppercase;
    }

    Regards,
    PenciDesign.




  •  1
    Rebbi replied

    Hi,

    1. worked, thanks.

    2. unfortunately not working. Can you please check again.
    ( I would like to have the categories (green color) in uppercase)


    Regards,
    Rebbi

  •  2,489
    PenciDesign replied

    Hi,

    Please modify the CSS code like this:

    .penci-featured-content .feat-text .featured-cat a {
        text-transform: uppercase;
    }

    Regards,
    PenciDesign.



  •  1
    Rebbi replied

    Hi,

    thank you, it worked now.

    By the way, the category on the sliders is not displayed in the mobile version. Is it possible to change that? If so, where can I do that?

    Regards
    Rebecca

  •  2,489
    PenciDesign replied

    HI,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

      @media only screen and (max-width: 767px) {
          .penci-featured-content .feat-text .featured-cat,
          .penci-featured-content .feat-text .feat-meta,
          .penci-mag-featured-content .cat,
          .penci-mag-featured-content .feat-meta,
          .featured-style-35 .featured-cat {
              display: block;
          }
      }

    Regards,
    PenciDesign.



  •  1
    Rebbi replied

    Thank you! :)