Redcliff2 theme
-
I’m using Redcliff2 theme and have following questions.
How do I add URL link in the tagline?
How do I change background color and length of featured prompt area?The blog I need help with is: (visible only to logged in users)
-
Hi,
> How do I add URL link in the tagline?
– I don’t think this is possible with Radcliff2> How do I change background color and length of featured prompt area?
– Looks like you have successfully changed the height and background color of the featured prompt area.
By ‘length’ do you mean width of the text display or the height of the featured prompt area?
These can be manipulated by using Custom CSS.
<Custom CSS is available only with Premium or Business paid upgrades https://wordpress.com/pricing/ >To change background color of the featured prompt area:
.hero-area {
background-color: #888;
}
change #888 value to #RGB value of your choiceTo change the width of the text writing in the featured prompt:
.hero-area-wrapper {
width: 740px;
}change the width from 740 to any value you like (preferably less than 1200px)
to change the height of the featured prompt area:
.hero-area-wrapper {
height: auto;
}This will keep the height of the featured prompt area dynamically in proportion of the text. You will have to change the padding-bottom and padding-top values to adjust the display of the button within the featured prompt
– bests,
- The topic ‘Redcliff2 theme’ is closed to new replies.