Osclass forums

Support forums => Themes => Bender => Topic started by: Resta on March 10, 2018, 01:12:03 am

Title: Increasing font sizes of Listing Title and Description
Post by: Resta on March 10, 2018, 01:12:03 am
Hello,

In the bender css I want to know exactly what to change for changing just the font sizes of Listing Title and Listing Description in loop-single.php so the listing title/descriptions show in larger fonts but location/price stays (default) small fonts.

I see listing-card related stuff but there is no font-size I can find in that area.  When I changed some font sizes, it also increased font sizes of location and pricing (but I don't want that) - basically, I want location and pricing in small fonts as it is but I want larger fonts for listing title and listing description.

TIA!
Title: Re: Increasing font sizes of Listing Title and Description
Post by: WEBmods on March 10, 2018, 01:32:36 am
Hello,

Add this code to your theme's CSS file:

Code: [Select]
/* Title */
.listing-basicinfo > a.title {
    font-size: 20px; /* Change this... */
}

/* Description */
.listing-basicinfo > p {
    font-size: 20px; /* Change this... */
}

If it won't work, just clean the cache because I tested it.

Regards.
Title: Re: Increasing font sizes of Listing Title and Description
Post by: Resta on March 11, 2018, 02:16:35 am
Thank You, Patrick for your reply.