enigma2k
Member
Posted 2 years ago #
Hi,
I am using Arclite theme on this site: http://www.effectivelanguagelearning.com/
The title is: Effective Language Learning
and the subtitle is: the #1 Resource for Language Lovers.
Using Firefox the subtitle goes from under the title to the right side if I widen the browser.
Using the IE the subtitle is always on the right side instead of under the title.
Can anybody tell me please what I have to change in the code that the subtitle ALWAYS stays under the title?
Jordan Acosta
Member
Posted 2 years ago #
In style.css, on line 397, it reads: float: left;. Comment that out: /*float: left;*/. If that doesn't work then you can uncomment the line and have it back the way it was.
It looks like the author of the theme intended for the sub-title to sit to the right of the title, and used float to set it up. It's possible that getting rid of it will mess up the layout a bit, but you should be able to finess the title back to it's original position without the float.
Good luck.
(And, of course, don't forget to get rid of the vertical bar in front of the sub-title.)
ClaytonJames
Member
Posted 2 years ago #
What if you change "float" left to "clear" left? will that work without any nasty side effects?
I think the 1px left border might have to be removed/changed from the #pagetitle h4 style in header-blue.css, possibly as well as the main style sheet. Just a guess.
/wp-content/themes/arclite/options/header-blue.css
enigma2k
Member
Posted 2 years ago #
thanks alot guys...removing the float: left; did the trick. Can't believe how simple this was.
THANKS A TON!
Jordan Acosta
Member
Posted 2 years ago #
You're welcome.
And, for ClaytonJames, changing float: left to clear: left is probably a simpler solution, but it would have to be applied to the subtitle, not the title.
ClaytonJames
Member
Posted 2 years ago #