Soft Responsive [Deleted]

Top: style properties -> login bar -> login bar collapsed height -> change to 0

Bottom: add this to extra.css
Code:
#forumFooter { background-image: none !important; }
 
Bottom borders: apply that change I posted above to remove image, add border radius to #headerMover:
Code:
#headerMover { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
Top borders are very tricky because dark background is covering white background, not other way around. It can be done by adding 2 absolutely positioned boxes to each top corner: one with dark background, one with white background covering it and border radius for corner. Add this to extra.CSS:
Code:
#navigation { position: relative; }
#navigation:before, #navigation:after, #navigation nav:before, #navigation nav:after
{
    display: block;
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 5px;
    height: 5px;
    background: #53777A url('@imagePath/xenforo/layout/pattern.png');
}
#navigation nav:before, #navigation nav:after
{
    left: auto;
    right: -15px;
}
#navigation:after
{
    border-top-left-radius: 5px;
    background-color: @pageBackground;
}
#navigation nav:after
{
    border-top-right-radius: 5px;
    background-color: @pageBackground;
}

@media only screen and (max-width: 1060px), only screen and (max-device-width: 1060px)
{
    #navigation:before, #navigation:after, #navigation nav:before, #navigation nav:after { display: none; }
}
 
Arty... I found a bug with this style. I thought it was an add-on, but I am almost positive it isn't. I had turned off all my add-ons, it still showed. I was unsure, so I checked your forum as well:

error.webp

I turned off all my social stuff, and it was still there. Maybe we both have the same add-ons, but not sure.

Not sure why it doesn't go away turning off the Social add-on. Its only one with Google and Twitter both...
 
Since I heard Stew raving about the style, I'm starting to take a look at this one for a possible project I'm working on.

Good work Arty! :)

You won't regret it Arny. I made the comment this is possibly the best style submitted on xenforo and I still stand by that. I almost purchased it only reason why i didn't it would look odd a graphics forum using another persons style. I'd recommended this style to anyone.
 
Responsive layout for popular "xenPorta" portal is available on style download page. Zip file contains style XML file. Install it as child style of "Soft Responsive" style.

Style contains modified template files that work with responsive layout and includes options to hide specific blocks from mobile devices. You can find those options in admin control panel in Appearance -> Styles -> Style Components -> Sidebar.
Screen Shot 2012-10-04 at 10.26.30 .webp
 
Top Bottom