My site address: www.viera-ssb.com
the menu on pc is ok. but on mobile device not good.
the menu is open but this go to the left and must scroll the page and see this.
I recorde from screen. please see this and help me
http://s4.picofile.com/file/8285457634/Rec_2017_02_07_17_22_14.mp4.html
why not update product price when select product attributes?
my product here
@Html.Raw(HttpUtility.HtmlDecode(@Model.FormattedText).Replace("<br />","" ))
@Model.FormattedText
In Editor:
In View Post page:
Hi
I was changed source view model for I can insert html code in post text.
Every thinks is right but I have littel problem.
My edited code on _CreateUpdatePost.cshtml
<div class="inputs">
@if (EngineContext.Current.Resolve<IWorkContext>().CurrentCustomer.IsInCustomerRole("ForumModerators"))
{
@Html.EditorFor(model => model.Text , "RichEditor")
}
else
{
if (Model.ForumEditor == EditorType.BBCodeEditor)
{
@Html.BBCodeEditor("Text")
}
@Html.TextAreaFor(model => model.Text, new { @class = "forum-post-text", TextMode = "MultiLine" })
}
</div>
<div class="posttext">
@Html.Raw(HttpUtility.HtmlDecode(Model.FormattedText))
</div>
@Html.Raw(HttpUtility.HtmlDecode(Model.FormattedText))