Modification of layout for embedded install
Modification of layout for embedded install
This should be an easy one, but for the life of me I cannot figure it out. I have an embedded install of serendipity, and need to change the width of the page to make it fill my base web-page size. Should just be a simple css change, but cannot find the correct css file. Specifically I want to make the content window wider. Any help would be appreciated.
Re: Modification of layout for embedded install
Normally your templates style.css (somewhere in the beginning, #wrapper?, #mainpaine?, etc.). That is the most exact answer I can give without knowing, Template, Url, etc.
Regards,
Ian
Serendipity Styx Edition and additional_plugins @ https://ophian.github.io/ @ https://github.com/ophian
Ian
Serendipity Styx Edition and additional_plugins @ https://ophian.github.io/ @ https://github.com/ophian
Re: Modification of layout for embedded install
url is www.ashreport.com/blog
template is blue, looked at mainpain and content in the style.css, but changing there does not seem to effect anything.
template is blue, looked at mainpain and content in the style.css, but changing there does not seem to effect anything.
Re: Modification of layout for embedded install
Code: Select all
<div id="mainContent" style="width:860px;">
Code: Select all
.thrColFixHdr #mainContent {
background: none repeat scroll 0 0 #000000;
color: #999999;
float: left; /* added */
font-size: 18px;
/*margin: 0 200px;*/
padding: 0 10px;
text-align: center;
/*width: 100%;*/
}You need to have better wrappers with cleaner CSS to make this be solvable within your css file only.
Regards,
Ian
Serendipity Styx Edition and additional_plugins @ https://ophian.github.io/ @ https://github.com/ophian
Ian
Serendipity Styx Edition and additional_plugins @ https://ophian.github.io/ @ https://github.com/ophian
Re: Modification of layout for embedded install
This is the worst approach possible. This would adapt my entire web-site to your blog. For those of you trying to figure out the same thing, here is the answer:
Switch your template to bulletproof. From here you can modify the template css to accommodate anything you need to do. Took about 30 min of playing with it to get an idea of what controls what, but comes down to turning off and on options and playing with the css to get the look and feel done right.
Switch your template to bulletproof. From here you can modify the template css to accommodate anything you need to do. Took about 30 min of playing with it to get an idea of what controls what, but comes down to turning off and on options and playing with the css to get the look and feel done right.