smgianotti
Forum Replies Created
-
I’m having the opposite problem. The like box is not expanding to fit the container which is set at 400px. I’ve tried the following CSS:
.fb_iframe_widget {
width: 400px;
padding-left: 14px;
}How can I get the likebox to expand to the full container width?
Thanks!
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] Subscribers not getting blog updatesAh, thanks! I totally missed that 🙂 But, now I’m on my way to getting it working…
Forum: Themes and Templates
In reply to: Removing padding around heading and body of postsYes!
Thank you, Luke!
Forum: Themes and Templates
In reply to: Changing colors of tab in tabbed widgetThanks! This is really helpful!
Forum: Themes and Templates
In reply to: Changing colors of tab in tabbed widget4) And if the space at the bottom of the Facebook widget can be shrunk.
Forum: Themes and Templates
In reply to: Changing colors of tab in tabbed widgetThis works perfectly!
After adding these I figured out how to put a border around the categories and Facebook widget, but can’t figure out how to:
1) make the border rounded like the Twitter widget–for the MailChimp, category and Facebook widgets.
2) how to round the widget title corners
3) how to get rid of that space between the category-widget title and the border.
Thanks for your help!
Forum: Themes and Templates
In reply to: Changing colors of tab in tabbed widgetThanks, that works!
Another widget puzzle I can’t solve is the space between the title and the rest of the widget for the Twitter and Facebook widget. The twitter widget has a border, but there is a space between the bottom of the title and the top of the widget border. There’s a similar space with Facebook but no border.
Currently the widget titles are controlled by:
.widget-title {
background-color: #81C1C9;
padding-top: 10px;
padding-left: 0;
padding-right: 0;
padding-bottom: 0;
font-family: Yanone Kaffeesatz, sans-serif;
font-style: normal;
text-transform: normal;
text-align: center;
position: center;
}What is the CSS for removing those spaces?
Thanks!
Forum: Fixing WordPress
In reply to: Title shows differently on Safari and ChromePerfect! float: none solved it.
Thanks, and have a great day!
Forum: Fixing WordPress
In reply to: Title shows differently on Safari and ChromeWhen I look at my CSS edits, the only #logo I have is:
#logo {
float: center;
}When I delete that, the logo falls to the left on Safari as well.
Since the edit above works in Safari, and there are no other #logo CSS edits, is there a way to get Chrome to recognize it as well?
Thanks!
Forum: Themes and Templates
In reply to: How do I change the archive banner?Thanks for your help!
I was able to custom edit the archives using the code below, but doing the same with #search-page-title h3 didn’t work for the search page. Any thoughts?
#archive-page-title {
background-color: #8BC2C9;
border-color: #0;
}#archive-page-title h3 {
font-family: Yanone Kaffeesatz, sans-serif;
font-style: normal;
text-transform: normal;
text-align: center;
}#archive-page-title h3 {
font-size: 28px;
}#archive-page-title h3 {
color: #EDF6F7;
}#archive-page-title h3 {
font-weight: 200;
}Forum: Themes and Templates
In reply to: transferring CSS customization from wordpress.comThank you for the tip on Google Fonts! The site looks great now.
Thank you for all your help! You’ve been a life-saver, or a site-saver 🙂
Forum: Themes and Templates
In reply to: transferring CSS customization from wordpress.comTo clarify, I split the font-size code you gave me, since I wanted to assign different sizes to them, but I looked back into CSS tried a couple things and this worked:
.entry-title {
font-size: 28px;
}As for the links. I think I get it now. I use a blog editor that feeds into the site and on it the links are blue. So, I changed the HTML code there.
Will look into the Google Fonts soon.
Thank you for your help!
Forum: Themes and Templates
In reply to: transferring CSS customization from wordpress.comGreat!
1) The code you gave (below) works for the post-title on the home page, but not on the post-page itself. (see: http://www.shannongianotti.com/four-ways-to-rehab-your-imagination/)
h2.post-title a {
font-size:8px
}2) As for links: That same page also has the issues with the links. Three of the links are default blue and the “Read” link has been teal since I made the initial switch over, the comment links are also teal. I set the link color code for teal.
3) What are the parameters for fonts that can be run for the site title/post titles? I tried NanumGothic works, but I tried replacing it with APPLE SD GOTHIC NEO THIN which didn’t work in the code below. Is it because only certain fonts will run? Where can I go looking for workable fonts?
#site-title {
font-family: Apple SD Gothic Neo, thin;
font-style: normal;
text-transform: normal;
text-align: left;
}I’m super thankful for all your help!
Forum: Themes and Templates
In reply to: transferring CSS customization from wordpress.comThank you! So close to being done!
The following two rules didn’t work:
Font size: The font looks good now, but the size (post title and site title) did not change with that rule. I have them both set at 8 pxl at the moment and they are much larger.
Links: The rule you sent did change the link within the post title (which I changed, since I didn’t want that link to show), but didn’t change the links within the posts.
Forum: Themes and Templates
In reply to: transferring CSS customization from wordpress.comI’ve been tinkering some more and, I’ve found three more tweaks that I’m stumped on. I’m wondering if I’m missing a something in the concept of doing the CSS customizing. Do these only work if they have the appropriate /*……/ headers before them?
1) change both the site title and post title font and size (both to NanumGothic, Regular)
I tried these:
/** the post titles **/
h2.posttitle {
font-size: 14px;
}– and – (just to see if it worked)
.entry-title {
font-family: Quicksand, Helvetica, Arial, sans-serif;
font-style: normal;
text-transform: uppercase;
text-align: center;
}2) remove the author tag that is below each post title
I tried these:
.sec-authors {
display: none;
}– and –
author vcard{
display:none;
}3) change the link color within the posts