Code: Select all
html, body {
color: #000000;
background-color: #aba7a0;
}
Code: Select all
html, body {
color: #000000;
background-color: #aba7a0;
padding: 0 75px;
}
Code: Select all
#box {
position: relative;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
padding: 0;
text-align: left;
width:95%; /* <-- use this to tie width to viewport size */
min-width: 660px;
}
Code: Select all
.inside {
color: #000000; /* YCC: default text-color of the inside */
margin-left: 5px; /* YCC: all texts at some distance of the left border */
margin-right: 5px; /* YCC: all texts at some distance of the right border */
width: auto;
background-color: white; /* CHANGE: path and name of your image */
}
Code: Select all
background-color: white; /* CHANGE: path and name of your image */
Code: Select all
margin-top: -16px;
Code: Select all
.postprofile {
/* Also see tweaks.css */
margin: 5px 0 10px 0;
min-height: 80px;
color: #666666;
width: 22%;
float: left;
display: inline;
}
Code: Select all
.postprofile {
/* Also see tweaks.css */
margin: 5px 0 10px 0;
min-height: 80px;
color: #666666;
width: 22%;
float: left;
display: inline;
margin-top: 35px;
}
is what I need to do to fix the breadcrumb issue? I apologize if I'm being dense, but the second link you provided shows a forum that still has the user info on the right hand side so I don't understand how it applies to my situation.marc1706 wrote:After you have finished, open theme/content.css and find:Replace with:Code: Select all
.postprofile { /* Also see tweaks.css */ margin: 5px 0 10px 0; min-height: 80px; color: #666666; width: 22%; float: left; display: inline; }
Code: Select all
.postprofile { /* Also see tweaks.css */ margin: 5px 0 10px 0; min-height: 80px; color: #666666; width: 22%; float: left; display: inline; margin-top: 35px; }
Code: Select all
#logo {
width: auto;
padding: 0px 0px 0 0px;
}
Code: Select all
#logo {
width: auto;
padding: 0px 0px 0 0px;
margin: 0 auto;
}
After making those changes and uploading the file I purged the cache and refreshed everything through the ACP - and it didn't change a thing. Is there something over-riding this somewhere that prevents it from working?marc1706 wrote:For centering the logo, try this:
Open proFormell/theme/common.css
Find:Replace with:Code: Select all
#logo { width: auto; padding: 0px 0px 0 0px; }
Code: Select all
#logo { width: auto; padding: 0px 0px 0 0px; margin: 0 auto; }
Code: Select all
.postbody {
width: 76%;
}
Code: Select all
.postbody {
width: 85%;
}
Code: Select all
.postprofile {
width: 22%;
}
Code: Select all
.postprofile {
width: 14%;
}