Help with (probably pretty basic) CSS
-
Hey,
I want to customise my blog more (www.lambandthelion.com), I’ve had a look at the CSS tutorials but it’s still quite baffling. I am yet to buy the custom CSS upgrade, because I want to make sure it is possible to do what I want with the blog first.
The theme I am using is coraline, and what I want to do is:
Have the title (Lamb and the Lion) under the header
make the widget and post backgrounds white.and probably some other things to but am yet to think of any more.
Am I right in presuming there is already CSS in the coraline theme stating that the title is under the header? If I were to just include my custom CSS with coralines would the two codes ‘clash’ with each other? or would my custom CSS trump the themes?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
-
thats fantastic, thanks! just paid for it now :D
what about getting the header (lamb/lion logo) above the menu and blog title?
-
Also do you if it is possible to have a splash screen in the wordpress.com version? or do you need to have hosted the blog on your own server?
-
You would need to the self-hosted WordPress.org version in order to create a splash screen. But… I personally much prefer sites without them if it’s at all possible to leave it out. :)
-
thank you so much for the help! totally new to this haha, yeah i think i’ll leave the splash screen!
-
-
does anyone know how we would move the header? (so going vertically down the page it goes header (the image of the lamb and lion) then the title (Lamb and the Lion) then the menu?
-
Here is a start. Adjust the spacing as necessary:
#header { position: relative; height: 220px; } #branding a img { position: absolute; top: 0px; } #masthead { position: absolute; top: 114px; width: 100% } #access { position: absolute; top: 190px; } -
that has worked amazingly, thank you! one final final thing, how do I move the line thats between the logo and the title back down to just above the menu?
you guys have been amazing, thank you :)
-
Use this to adjust the borders surrounding the header image:
#branding img { border: 1px solid #000; border-width: 3px 0px 0px 0px; }For border-width, you set them clockwise: top right bottom left.
Use this to adjust the border above the menu:
#access { border-top: 1px solid #CCCCCC; }Adjust the height and color to your liking.
-
done, thats absolutely fantastic! and I actually vaguely understand what that all means now :D
thank you so much :)
-
That’s awesome! Your last comment makes me want to work on more tutorials and resources too.
- The topic ‘Help with (probably pretty basic) CSS’ is closed to new replies.