Padding in file information but not category list? Padding in file information but not category list?
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Padding in file information but not category list?

Started by fran86, June 15, 2015, 08:36:35 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

fran86

Hi there,

Is there a way to make more padding under the 'File information' without having more padding between the category list on home page? (It's hideous) I tried padding on tableb and tableb_alternate - it's literally so close and almost unreadable there without padding. I can provide you with screen caps if you need them.

Thank you in advance :)

allvip

Add to themes/your_theme_name/your_style.css:


#picinfo .tableb {
  padding: 5px 3px 5px 3px;
}


5px 3px 5px 3px; means top, right, bottom, left.
Replace the values with your desired values.

You can also use if you need to style it more:


#picinfo .maintable {
    YOUR SYLES HERE
}
#picinfo .tableh2 {
    YOUR SYLES HERE
}
#picinfo .tableb_alternate {
    YOUR SYLES HERE
}
#picinfo .tableb_alternate a:link{
    YOUR SYLES HERE
}