Hi there,
Just 2 quick questions..
1. I have moved the product title to the right of the image on the single product page. At this point it is using the body text, all-caps at a larger size. I would like to change it to H2. The custom CSS i am using to achieve this is:
/* This makes the new product title */
.woocommerce div.product .entry-title {
display: block;
float: right;
width: 48%;
text-align: left;
font-size: 26px;
margin-bottom: 30px;
}
/* This fixes the title for mobile screen */
@media (max-width: 600px) {
.woocommerce div.product .entry-title {
float:left;
}
}
How do I go about altering this?
2. I would like to include the brand attribute just beneath this heading. (In between the product title and the price). I have tried but can’t seem to figure it out. The brand attribute should be H4.
TL:DR:
– Change Product Title to H2
– Insert “Brand” Attribute In-Between Product Title & Price as H4.
Any guidance you could give would be great!
Attachments:
You must be
logged in to view attached files.