UNSUCESSFUL and FRUSTRATED. Expound Theme – CSS Questions
-
I’ve posted this to the forum on 01/16/16, tried various CCS code per Google and forum searches, attempted to understand the feedback provided by a Happiness Engineer, etc. BUT I’m still UNSUCESSFUL and FRUSTRATED with the following:
How do I change the font family, font size, etc. of the “widgets title and widgets body, etc.” including the “Calendar Widget”? What is the correct code to accomplish this?
How can I adjust a widget in a sidebar horizontally or vertically by adding padding above or below if possible? What is the correct code to accomplish this?
Help would be greatly appreciated!!!
The blog I need help with is: (visible only to logged in users)
-
Hi there,
How do I change the font family, font size, etc. of the “widgets title and widgets body, etc.” including the “Calendar Widget”? What is the correct code to accomplish this?
For your widgets’s titles, you can try the following (you can try another font instead of “fantasy”)
.widget-area .widget-title {
font-size: 20px;
margin-bottom: 20px;
}
.widget-title {
font-family: fantasy;And for the Widget body:
.widget-area {
padding-top: 41px;
font-weight: 800;
font-size: large;
font-family: cursive;
}
I didn’t find your Calendar widget on your site. -
How can I adjust a widget in a sidebar horizontally or vertically by adding padding above or below if possible? What is the correct code to accomplish this?
To adjust the position of your widget area, try this by assigning different values to the width, paddings and margins.
#secondary {
float: right;
width: 160px;
padding-right: 20px;
padding-top: 20px;
margin-left: 20px;
} -
-
Hi Carladoria!
I modified my blog per your instructions. You provided the perfect solutions! Thank you so much!
May I ask one final question….
What code is needed to change the height for my “commentary (home)”, “purpose”, “about” and “disclaimer” pages. I’d like to make them the same height.
Thank you in advance!
- The topic ‘UNSUCESSFUL and FRUSTRATED. Expound Theme – CSS Questions’ is closed to new replies.