wanderer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?Problem solved. I worked on it a little more.
Replace
.widget-title { display:block; text-align:right; }
with
.widget-header { text-align:right; }
Now I better go. Hope that helps.
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?You’re welcome. Good luck!
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?I tried a few things, but I think it’d take me too long. I have to leave soon, but maybe someone else will come along and help you fix that one.
Anyway, your website looks a lot better now. I’m glad I could help.
One last code for you:
img {float:right}
Have a great day!
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?That part is a bit tricky and will take more time to figure out.
By the way, you’re welcome! ??
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?.widget-title { display:block; text-align:right; }
That should do it. I hope you’re happy with your page now.
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?.widget ul { text-align:right }
was for the widget content and is working. Your page looks good so far.
I need to figure out the widget title, so give me a moment.
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?You would add all this to your Custom CSS:
h2.entry-title a { text-align: right; width: 100%; float:right; } .widget ul { text-align:right } .entry-content p { text-align:right; }
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?I was talking about the code in your earlier reply.
.widget ul text-align:right
needs to be
.widget ul { text-align:right }
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?Your code needs brackets ??
You might also want this since your widgets have other text:
.entry-content p { text-align:right; }
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?You only need this selector:
.widget ul
and you only need
text-align:right
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?For your widget titles, you can use custom CSS on this selector: .widget ul
It should be pretty easy to figure out.
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?Yep you got it
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?It was showing a line before you changed the code anyway.
If you prefer no line, just use this instead:
h2.entry-title a
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?Yes to both. Code looks good now. Is it giving you the result you want?
Forum: Fixing WordPress
In reply to: How to Align Post Title to the Right?I didn’t see
h1
in your HTML code. There ish2
, however. You might also want to addfloat:right
to your custom CSS code.For your widget titles, you can use custom CSS on this selector:
.widget ul