I am in a heavily modded version of the default theme in 1.5.3. I am trying to figure out how to change the size of the font size of my product names as they appear as too large for my taste. Any ideas on where to do this. I've looked in the product.tpl, but don't see anything specific. In the Shopping Cart, I would also like to change the size of the word SHOPPING CART for the same reason. Just way too big.
Any ideas would be great!
Any ideas would be great!
yes, I know that, but I want to know exactly what bit of code there affects the size of the product name. I have changed a few font sizes, but have not found the right bit of code affecting the product title. I need someone to be very specific.
If you are using the default theme, then the product titles use the H1 tag, so you would change the font-size in the following code:
If you don't want to adjust the Welcome module's title size, you will need to take out that rule above and then add a couple new rules like so:
Code: Select all
h1, .welcome {
color: #636E75;
font-size: 32px;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
}
Code: Select all
.welcome {
color: #636E75;
font-size: 32px;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
}
h1 {
color: #636E75;
font-size: 32px;
font-weight: normal;
margin-bottom: 20px;
margin-top: 0;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
}
Who is online
Users browsing this forum: No registered users and 3 guests