Soldato
The styles for the white border and background are set on `.bx-wrapper` in line 30 of jquery.bxslider.css. If you want to change them you can override those styles in your own stylesheet.
I am not getting that much time to work on this but I sorted the font awesome icons using the stacked technique so thanks for that Poolybit, much appreciated. I am now back to trying to get the image slider working using bxslider. I have it implemented but the styling is all over the place. I want the images centered with a drop shadow and to get rid of the white background. Any ideas?
Latest version here
Cheers
No worries, glad you got it sorted. As Spunkey said, the '.bx-wrapper' can be adjusted to get rid of the border and background colour. You might need to make your css selector for this in your main.css more specific than the existing .bx-wrapper to get it picked up because of the file ordering in your page. ".container .bx-wrapper" should be sufficient. To centre the images, you can target the ".bx-wrapper img" and, as they are block elements due to the existing .bx-wrapper img style, use "margin: 0 auto" to centre them within the container element. You could also chuck the box-shadow style into that same img selector if you wanted.
As a quick note, you've got a couple of failed image references on your page, one being the reason why the left / right controls on the bxslider aren't showing on hover:
GET http://rdoyle.info/temp/css/images/bx_loader.gif 404 (Not Found)
GET http://rdoyle.info/temp/css/images/controls.png 404 (Not Found)
I had a look at the code inside jquery.bxslider.css and tried to change the background color in there, as mentioned at around line 30 but it didn't have ant effect. You mention I should override the styles in my main.css, could you give me some example CSS of how this would be done as Im not sure what you mean by ".container .bx-wrapper".
Cheers
.slick-slider img {
min-width: calc(100% - 100px);
margin: 0 50px;
}
How can I reduce the gap between the bottom of the banner image and the top of the columns. There is some funky row:after code in my CSS that controls this, I got this from a YouTube tutorial so not quite understanding how to control the height of my row div?
.banner{
margin:5% 2% 0 2%;
}
.col{
margin:0 2% 5% 2%;
}
How can expand the height of the footer div, make it responsive so it always stretching to the bottom of the page?
footer{ height:300px;}
It's not working because you've got a.hover rather than a:hover, etc.Dumb question but my mailto link has no styling even though I have a:link, a:hover etc stles set in my CSS?
.row:after {
clear: both;
content: " ";
display: table;
}