Hi! and sorry for the delay, I haven’t been notified by the last comments.
anaclaramartinezramos
You can write in the alt field when you select an image in the admin, then this will appear in the form of <img … alt=”my description” … >
patrickvg
you can adjust the css, these are the classes you need to modify in css/main.css:
.item .mask {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
text-align: center;
opacity: 0;
background: #000000;
filter: alpha(opacity=0);
background-color: rgba(0, 0, 0, 0.85);
transition: all 0.2s ease-in-out;
}
.item:hover .mask {
opacity: 1;
filter: alpha(opacity=85);
}
rsrs55
The same as I said to patrickvg, your requests can be done tweaking the css:
.header-container for all things related to the header…
patriq
FullFolio pages/post works with the ability to add a featured image, then the title and the content appear below the featured image. You can upload images in the media and these images will appear below the content in form of columns.
Fullfolio doesn’t have the ability to customize this kind of thing without tweaking the css or a little of html or php. But, I’m working on a new theme that uses the WordPress Customizer to do this kind of things. Stay tuned… ??