Bootstrap News: Image Modifciation

You would have to add the category via PHP on top of the image. First find the PHP template(s) where your page is rendered. This could be archive.php for the overview. For single posts this is usually single.php, or content-single-post.php. It depends on your theme. Then you find where the post thumbnail is being rendered, … Read more

Content going full width even though container is not

From a quick look, the contact form fields are centered, with a left and right column. This is on a laptop display; didn’t check other devices. But, the best way to diagnose this is with the Developer Tools. Right-click your form area, select “Inspect Element” (or whatever or F12), then poke around looking at the … Read more

current menu item hover not working?

I just checked your website and found some helpful CSS for your site. Find this line of CSS and change your color code, it will surely work. For menu hover and focus (‘Use this CSS in bedcentregrimsby.css’) .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover { color: #a4cb9a; } Please feel … Read more

Changable favicon

If you have a modern theme, where you can upload a favicon with the theme customizer (rather than a hardcoded url in the header.php), you can simply use a filter. Take a look at the function get_site_icon. As you can see it returns the url of the image that you have uploaded using the customizer. … Read more

Create multiple custom HTML pages

You can created pages within wordpress itself and then assign a custom template. You may store the template files however you like as long as they are wihtin the theme folder itself. https://developer.wordpress.org/themes/template-files-section/page-template-files/