Viewing 1 reply thread
You must be logged in to reply to this topic.
Hi,
Can anybody help me to show me how to order the social media icon in footer? You may check my web in pistamedia.com . I want instagram icon on the left (the 1st) and linkedin icon on the right (the 2nd).
Also, can the title in portfolio thumbnail be changed, especially the weight font? For instance, my 1st portfolio (that has the gif image), the title which “capturing attention…early activation” be changed into thin title/not bold? So it has bold and thin words.
Hello,
To reposition the socials add this css into your Custom Css box:
footer#colophon .widget ul {
display: flex;
flex-direction: row-reverse;
float: left;
width: 100%;
}
To change the portfolio title wight font, add this css:
.portfolio_item .entry-overlay h3 {
font-weight: 400 !important;
}
Best regards!
You must be logged in to reply to this topic.