I've attached some code here, I recently added a link to my portfolio website and the paragraph link is doing something weird, it seems to be aligning funky, I'm not sure what the problem is. I'm wondering if it might stem from some other styles in CSS (e.g. nav_links), but I'm not sure how to correct this without messing up other styles.
I added a class to a href and tried adding some CSS styles to it, it solved some issues (like size and color) but there were gaps
Rereading your question, I'm not sure exactly what problem you are trying to solve. What does "aligned fashion" mean?
The CSS on Design Portfolio has
float: left
and margins.float: left
Takes it out of the flow and moves it to the left of the viewport, and causes other text (such as "Read a book") to wrap around it (and its margins) ).You made a mistake in CSS and did something like this:
You need to remove these commas. I assume you are trying to style
.nav_link
in ali
inside an element with classa
. But that's not what you're doing. Instead, this selector applies a bunch of styles to.nav_link li
andindividuallyto alla
elements. The selector should actually look like this:You are experiencing this issue in multiple places in your CSS.