625 users online

Add icons in top menu

Posted: 4 months ago Quote
Hi,

This is my first post here. How can I add icons or images in the top menu like here:

http://www.podpeopledesigns.com.au/default.aspx

This page was in the Showcase-Live shops area, so is possible, the question is how.
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 4 months ago Quote
bkeloi wrote:
Hi,

This is my first post here. How can I add icons or images in the top menu like here:

http://www.podpeopledesigns.com.au/default.aspx

This page was in the Showcase-Live shops area, so is possible, the question is how.


Do you mean navigation menu?
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 4 months ago Quote
yes
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 4 months ago Quote
Home page
    New products
    Search
    My account
    Blog
    Contact us
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 3 months ago Quote
anyone have any feedback on this? i need the same help and I am trying to figure out specifically where i change the link to the home button and logo on the front end in v2.2
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 3 months ago Quote
Hi

I create a ordered list table in the headerlist.cshtml as followed

works fine for me.

<div class="header-links">
    <table>
        <tr>
            <td>
                <img = src="../../Themes/ClassicGradation/Content/images/Home_Button1.gif" alt="Home"height= "100" width= "48" border= "0" />
                <a href="@Url.RouteUrl("HomePage")"/>
             </td>
            
             <td>
                &nbsp;
             </td>
            
             <td>
               <a href="@Url.RouteUrl("ShoppingCart")"><img = src="../../Themes/ClassicGradation/Content/images/ico_Basket_Button2.gif"alt="ico_Basket_Button.gif "height= "100" width= "48" border= "0" />
            </td>

If you are using speafic areas that the guy's/girls created in lop find the code where the lik is and apply it to your own.

Hope this helps BTW :)

Richard
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 3 months ago Quote
sorry for my ignorance but my question is right now how do i change where each top nav page links to? i can't find that. with webforms on my old sites i would go into menu.ascx and i would see a list of pages but on mvc and this system i have no idea where to go.
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 3 months ago Quote
jteck wrote:
anyone have any feedback on this? i need the same help and I am trying to figure out specifically where i change the link to the home button and logo on the front end in v2.2

The logo link is in Views\Shared\Header.cshtml
<div class="header-logo">
    <a href="@Url.RouteUrl("HomePage")" class="logo">&nbsp; </a>
</div>

    
The "HOME PAGE" link is in Views\Common\Menu.cshtml
<a href="@Url.RouteUrl("HomePage")">@T("HomePage")</a>
.
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 3 months ago Quote
ok what about the rest of the top nav pages such as new products,etc... if i want to add more pages to that?
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 3 months ago Quote
jteck wrote:
ok what about the rest of the top nav pages such as new products,etc... if i want to add more pages to that?


You can achieve that by Hard coding the links to the new pages created using topic section in the menu view
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)