>>
Site Map
>>
Forums
>>
Blocks
Forum module - topics in forum:
Blocks - Having problems with a block? Code doesn't work, get help here.
Bigger Text Size In Blocks
Is it possible to make the text size any bigger. The blocks seam to ignore the html coding for text sizes. The only way around it that I know of is to print screen the bigger size and do it as an image. This is rather pain-staking though and time consuming.
Can anyone help?
Cheers.

look in the themes folder and find the theme that you want to make corrections too.. Find the css sheet and them search for the blocks font size.. That should take care of the problem... Most themes make use of a css style sheet instead of html.... Hope that helps
Hi, im having problem editing colour of my themes style sheet..
I have edited the colour in here but it doesnt seem to change the colour of text in the blocks i have at the sides...
| Code: : |
/* Quote & Code blocks */
.code {
font-family: Courier, 'Courier New', sans-serif; font-size: 13px; color: #00CCFF;
BORDER-TOP: #000000 1px solid;
BORDER-BOTTOM: #1B3244 1px solid;
BORDER-LEFT: #000000 1px solid;
BORDER-RIGHT: #1B3244 1px solid;
BACKGROUND: #091219;
}
.quote {
font-family: Courier, 'Courier New', sans-serif; font-size: 12px; color: #00CCFF;
BORDER-TOP: #000000 1px solid;
BORDER-BOTTOM: #1B3244 1px solid;
BORDER-LEFT: #0000001px solid;
BORDER-RIGHT: #1B3244 1px solid;
BACKGROUND: #091219;
} |
It wouldn't those are for the forum QUOTE and CODE functions.
ohh...
Hi Seven, do you know where the file is to edit blocks?
It depends on the theme. I personally usually use the code similar to the following.
style/style.css
Block Title
| Code: : |
.block-title {
COLOR: #FFFFFF;
FONT-SIZE: 12px;
FONT-FAMILY: Verdana, Helvetica
} |
Block Content
| Code: : |
.block-content {
COLOR: #FFFFFF;
FONT-SIZE: 10px;
FONT-FAMILY: Verdana, Helvetica
} |
Keep in mind every designer/coder will have their own way of doing things. I can only speak for myself.