Try this:
/* Moves Slider Up */
.carousel {
position: relative;
top: -10px;
}
@ibogo, thank you but it doesn’t seem to work. I’m sorry I am very new to this, I am adding this code to the Custom CSS in advanced option of the Customizr theme, is that correct?
You need to adjust to number in the code.
Try this:
/* Moves Slider Up */
.carousel {
position: relative;
top: -10px;
}
@ibogo, I tried changing the number, it does in fact move the slider up, but there still the same spacing between the header and slider. So the slider just slides under the header..
Site Link would be good, but try:
/* Moves Slider Up */
.carousel {
margin-top: -10px; /* Adjust */
}
@rdellconsulting, your solution does exactly the same thing as ibogo’s. and website is : http://www.pubcrawlmtl.com
in your style.css file add
.tc-header {
border-bottom: 0px solid #e9eaee;
}
It was originally 10px but 0px should get rid of that gap
Please mark topic as resolved (on right).
Glad you solved 🙂
Please start a new thread with your question. This post was completed 9 months ago and Czr will have moved on since then and the solution may not be relevant.
You have this:
#pg-23-0, #pg-23-1, #pl-23 .panel-grid-cell .so-panel {
margin-bottom: 30px;
}
and
#pg-23-1 {
margin-left: -15px;
margin-right: -15px;
}
Replace with
#pg-23-0, #pl-23 .panel-grid-cell .so-panel {
margin-bottom: 30px;
}
and
#pg-23-1 {
margin: 0px -15px;
}