TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

April 29, 2024, 04:09:22 PM

Login with username, password and session length
Members
  • Total Members: 3,885
  • Latest: Growner
Stats
  • Total Posts: 195,173
  • Total Topics: 21,219
  • Online today: 90
  • Online ever: 3,540 (September 03, 2022, 01:38:54 AM)
Users Online
  • Users: 0
  • Guests: 40
  • Total: 40

Article Border-radius On The Frontpage

Started by Skhilled, October 22, 2023, 03:32:18 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Skhilled

Hi, I've been trying to make the articles on frontpage look like the rest of the blocks that have a blue border at the top with no border-radius. But no matter what I do I can't seem to make the articles the same way even if the text or centered or not. Is there something I'm missing?

Link to my forum: https://jpr62.com/demos214/index.php
SMF version: SMF ver. 2.1.4
TP version: TP ver. 2.3.1
Default Forum Language: English
Theme name and version: News
Browser Name and Version: Firefox/118.0.2 (64-bit)
 

@rjen

It is caused by the css for the div class title_bar in your theme...

You can change it or overwrite it in css...

You cannot view this attachment.
Running Latest TP on SMF2.1 at: www.fjr-club.nl

@rjen

You can add this to your custom.css:

.tparticle > .title_bar {
   border-radius: 0 0 0 0;
}
Running Latest TP on SMF2.1 at: www.fjr-club.nl

Skhilled

Ha! I assumed that I would have to do something similar.

A question, tho. Which do you think it's best to use because I've used the 2nd one without any problems:

border-radius: 0 0 0 0;
Or:

border-radius: 0;
EDIT: And thank you! :)

tino

I'd go with the second one as they're all 0 and if you minify the css that's what will be used anyway.

Skhilled