I have a little problem here. in this website: link
I need to align this image slider to the top of the screen, behind the main menu.
As you can see, there is a black bar at the top. I put it with 10px height, but the idea is to leave it with 0px even (I just put it like this to see if it is in the right place)
What I need now is to position the slider pasted on this black bar. The slider is set to position: absolute.
How do I do this?
EDIT: Here are the codes below:
.upperfixedbanner {
position:fixed;
top:0px;
width:100%;
height:10px;
background-color:#000000;
}
.upperfixedbanner > .sliderhomepage {
display:block;
position: absolute;
width:100%;
top: 0px;
margin-top:0px;
left:0px;
}
<div class="upperfixedbanner">
</div>
<div class="sliderhomepage">
<!--SHORTCODE DO SLIDER-->
</div>
Other information: CMS: Wordpress Using Wp-Bakery (because the customer requested a site where they can easily update the list of products and downloads later).