Hi all :)
My first post here, read all the rules, so hopefully this will go smoothly.
I've been working on my new WP website (wakelin.eu) - and learning CSS editing and some basic PhP skills.
At the moment I've made a few changes based on stuff ive learnt.
I've added code to H2 (I wanted my page titles to be under lined in a unique way) and Widget title to add a bottom border.
#content h2 {border-bottom: 3px solid red;}
.widget-title {
color: #222;
font-weight: bold;
/* EDITED BY ME */
border-bottom: 3px solid red;
Now this has had the desired effect and a little extra naggle.
I didnt know the bottom (Footer) widgets would also have this border.
So a few questions
Instead of editing content H2 - Is there a better way to underline page titles?
Are the bottom 4 widget spaces defined in the CSS at all?
(I looked for #first #second ...but no joy)
Is there a way to remove this border on only the bottom 4 Widgets?
Hopwfully you kind people can help, and I can learn a little bit more ^_^
Martin