Any help with these issues would be greatly appreciated
-
I’m looking for a few pointers on things I would like to change on my webpage.
Firstly is it possible to make the background image go all the way to the top of the page? When I remove my header image it goes a colour rather than the whole background image.
Secondly, I like my background image, but I would like my posts to have a filled background rather than the background on the page, so you can read the posts a bit easier ( I would like that to be that case on all pages).
Thirdly, is it possible to put widgets on both sides of the home page? I can only seem to do it on one side?
Finally, I was wondering how I change the colour of my menu bar at the top?
Thank you very muchThe blog I need help with is: (visible only to logged in users)
-
Hi, add this to your custom CSS, which hides the header image and removes the background color, and see what you think.
.custom-header-image, .site-header { background: none !important; }For the content area over the background image, try the following two suggestions. The first puts a translucent black background behind the content and widget area.
.wrap { background-color: rgba(0,0,0,0.5) }This second suggestion puts the background only on the content area and not the sidebar.
.wrap .content-area { background-color: rgba(0,0,0,0.5); padding: 20px; }Thirdly, is it possible to put widgets on both sides of the home page? I can only seem to do it on one side?
No, that is not possible without changing the actual theme files and adding the necessary php scripting to create that additional widget area.
Finally, I was wondering how I change the colour of my menu bar at the top?
Add this and edit the color code.
.header-top { background-color: #cc0000; }
- The topic ‘Any help with these issues would be greatly appreciated’ is closed to new replies.