I had the same problem with my Clean theme, and it's a hard one to fix. It seems the problem originates from the Panel having a a fixed width and a float right, while the Content has a scalable width and no float at all. I solved this by giving both the Content and the Panel a float property and a scalable width by percentage.
I'm also forseeing another problem with this theme, since there is no clear at the end of the Content and Panel. If the Content would be in the right place, the Panel would overlap the footer if it's longer then the Content. But that's easy to fix.
I'm really interested if you find a solution to this problem digibomb. The only other one I found was by using a table (*yuk*).
@digibomb I'm having an issue with BrandFriendly where my Start a New Conversation page doesn't reload properly. When I submit the message, it sends, but I get no visual confirmation until I manually reload the entire page.
@digibomb though its ultimately easy to change custom.css and default.master.tpl with BrandFriendly theme, i need to change some HTML not CSS, like adding few tags and text.
Where do I specifically do that? particulary for asset content -
@digibomb is it the same as "Embed friendly theme"? I need this but with different colors cause it doesnt match my site when I embed it. Is there any other themes like that out there?
@aery you would need to modify core module files to make these changes or you could use themehooks
@booboo yes, similar, Embed Friendly was based on Brand Friendly. These are the only 2 like this. The Embed Friendly is very easy to customize. Take a look through the The Ultimate Theme Guide http://vanillaforums.org/docs/themeguide/toc
Dumb question, but I don't get why underlines don't appear on link hover. I'm seeing text-decoration set to "underline" for a:hover within the custom.css file.
Comments
I'm also forseeing another problem with this theme, since there is no clear at the end of the Content and Panel. If the Content would be in the right place, the Panel would overlap the footer if it's longer then the Content. But that's easy to fix.
I'm really interested if you find a solution to this problem digibomb. The only other one I found was by using a table (*yuk*).
- Spam
- Abuse
- Troll
2 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •I tried to make a quick fix and looks like it's worked :
Find these lines on the default.master.tpl
<div id="Content">
{asset name="Content"}
</div>
change that to :
<div id="Content">
<div style="float:left; width:100%;">
{asset name="Content"}
</div>
</div>
Please try it
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •I have fixed the theme, you can either re-download it or modify a single line of code.
In custom.css change
body.Post #Content {
margin:0 20px;
}
to
body.Post #Content {
width: auto;
margin:0 20px;
}
Community Manager for Vanilla Forums
- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •thanks that did the trick!
@digibomb
tried your solution but for some reason it did not fix the error chuckD pointed out?
thanks all!
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Community Manager for Vanilla Forums
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •@digibomb - I tested on a new clean install and the second issue still a problem
http://img253.imageshack.us/img253/2825/brandfriendly2.png
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Community Manager for Vanilla Forums
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •thx
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •pix3l solution works!!
Does anyone see a problem with adding this to the custom.css file instead?
div.Preview div.Message, ul.MessageList div.Message {
clear: none;
font-size: 100%;
line-height: 140%;
}
An alternate version that seems to fix the issue. It will need digibomb's confirmation.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Approved. Theme updated. Thanks for the work guys!
http://vanillaforums.org/addon/brandfriendly-theme-1.2
Community Manager for Vanilla Forums
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Community Manager for Vanilla Forums
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Where do I specifically do that? particulary for asset content -
{asset name="Content"}
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •@booboo yes, similar, Embed Friendly was based on Brand Friendly. These are the only 2 like this. The Embed Friendly is very easy to customize. Take a look through the The Ultimate Theme Guide http://vanillaforums.org/docs/themeguide/toc
Community Manager for Vanilla Forums
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •