Close

Changing Column Layout

ululavi
11 years ago
#1525 Quote
Avatar
  • 17
Currently the “topic” pages of the site uses the “_ColumnsTwo.cshtml
“ layout, with the left column navigation.
I would like to get ride off the left navigation column on this topic pages only and use the “_ColumnsOne.cshtml”
Any suggestion on how to proceed?
Thank you,
Support
11 years ago
#1526 Quote
Avatar
  • Moderator
  • 1044
Hi lacorne,

You can change the topic's layout to be one column by changing the ~/Themes/Fashion/Views/Topic/TopicDetails.cshtml file by changing the following line of code
from
"Layout = "~/Views/Shared/_ColumnsTwo.cshtml";"
to
"Layout = "~/Views/Shared/_ColumnsOne.cshtml";"

ululavi
11 years ago
#1527 Quote
Avatar
  • 17
Thank you !