Hey,
I want to some changes here: http://www.hotelladdict.se/startsida/
1. Decrease space between first two widgets and header
2. Align the height of the first two widgets
3. Delete the second headline in Category widget
4. Change the name in the category drop down meny
1. Center the headline in the blog posts
What codes shall I add?
Thanks
Charlotte
Hey Charlotte,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.flex_column .widget:first-child, .content .widget:first-child {
padding-top: 13px;
border-top: none;
}
.home .post-title.entry-title {
text-align: center;
}
.home .screen-reader-text {
display: none;
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks Victoria.
1. But the Headline in the posts is not centered after I entered the code.
2. How can I change the text in the Category widget?
I want to change Select Category
Charlotte
Hi,
1.) Please use this to center align the title.
#top .fullsize .flex_column .template-blog .post-title, #top .fullsize .flex_column .template-blog .post-meta-infos {
text-align: center;
}
2.) Decrease the space above the content with the following css code.
.content, .sidebar {
padding-top: 20px;
padding-bottom: 20px;
}
3.) You might find the separator icon not centered. Please decrease the width from 800px to something much lower. It’s just too wide.
Best regards,
Ismael
Thanks :)