bobfrank375
Forum Replies Created
-
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] Change Title Font SizeThank you!
None of the heading sizes are what I want, though, so I just put in a number and it’s perfect. Except for the fact that the number now shows up like this: <10> before the title. Not a big deal, really, but I’m curious as to how to fix it. It seems no matter what number or symbol I put in, the font stays the same. Here is the code:
$feedtitle =”<10>get_permalink().” class=’facebook_page-link’ “.$link_target.”>”.substr($block->get_title(), 0, 200).”</10>”; // Title of the update
}elseif ($options[‘feed_title’] == “” ) {
$feedtitle = null;Could I just remove the parts with the 10 in them and the brackets around them, so it looks like this:
$feedtitle =”get_permalink().” class=’facebook_page-link’ “.$link_target.”>”.substr($block->get_title(), 0, 200).”“; // Title of the update
}elseif ($options[‘feed_title’] == “” ) {
$feedtitle = null;Or would that really screw everything up? I am just afraid of the site crashing like the last time I tried to do too much editing. And, as I said, it’s pretty minor, but curiousity is getting the best of me.
For anyone who has this problem in the future with Themeblossom’s Candidate theme:
Please open style.css, find this line:
input.text, input[type=password], textarea, .selector {font-family: Arial, Helvetica, sans-serif; font-style: italic; font-size: 12px; line-height: 18px; height: 18px; width: 450px; color: #959a9a; padding: 7px 10px; background: #ffffff; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; border: 1px solid #cbcbcb; -moz-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 9px rgba(0,0,0,0.2); -webkit-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 9px rgba(0,0,0,0.2); box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 9px rgba(0,0,0,0.2); position: relative; float: left;}
and change it to read:
input.text, input[type=password], textarea, .selector, input[type=email] {font-family: Arial, Helvetica, sans-serif; font-style: italic; font-size: 12px; line-height: 18px; height: 18px; width: 450px; color: #959a9a; padding: 7px 10px; background: #ffffff; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; border: 1px solid #cbcbcb; -moz-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 9px rgba(0,0,0,0.2); -webkit-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 9px rgba(0,0,0,0.2); box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 9px rgba(0,0,0,0.2); position: relative; float: left;}
After you save this file, just refresh your site in front-end and everything will be as you want.