Can someone tell me why 2 pages created identically have different page structures?
The two pages referenced here are created with a rich text and two menus side by side.
However, when they render they render differently. One uses a control structure with anchor tags and the other uses link lists.
This is causing me a problem because I am trying to use CSS to have the menus display vertically. The CSS I am using is below. The CSS works for the page on the left which uses link lists but not on the page on the right which uses the .control with anchor tags
Note:
1)these are on two separate databases.
2) although the pictures show the lists vertically that is due to the spacing of the page when put side by side. I have also included the full-screen mode versions.
.kn-container .view-group-2 {
width: 500px; /* width in pixels */
}
#view_93 .menu-links__list {
flex: 1;
display: flex;
flex-direction: column;
// width: 250px; /* width in pixels */
}
#view_95 .menu-links__list{
flex: 1;
display: flex;
flex-direction: column;
// width: 250px; /* width in pixels */
}
.kn-container .kn-view{
width: 100%
}
below is the image of the two pages.
Code image
Link List page
.control Page