1

Where should I put the css code for the images of /home/portfolio in Visual Studio ASP.NET project?

<div id="site_content" class="col-md-3">
  <ul id="gallery">
    <li>
      <a href="">
        <img src="~/images/portfolio1.jpg" width="400" height="300" />
        <p>My portfolio file 1</p>
      </a>
    </li>
    <li>
      <a href="">
        <img src="~/images/portfolio2.jpg" alt="" />
        <p>My portfolio file 2</p>
      </a>
    </li>
  </ul>
</div>

I want this to be without list-style-type and to be responsive

1 Answer 1

1

You can try like this:

In SolutionExplorer ---> Right click to project ---> Add existing item and then select your Stylesheet(CSS).

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.