Hi,
I want to make use of this Template.
However, I want to change the 4 col to 5 col for the 'Recent Work', 'Learn about us'.....
I tried changing certain CSS, but it doesn't work right. I'm ain't good in CSS.
Any idea what to change?
Thank you.
Positioning issue
Moderator: General Moderators
Re: Positioning issue
Change
into
Each column width is 204px + 20px left and 20px right padding = 244px
Total available space is 244 * 4 = 976px
For 5 column layout each column will be 195.2px - 20px left padding - 20px right padding = 155.2px ~ 155px
Now there should be enough space for 5th column
Code: Select all
.quicknavgrid_3 {
/* ... */
width: 204px;
}Code: Select all
.quicknavgrid_3 {
/* ... */
width: 155px;
}Total available space is 244 * 4 = 976px
For 5 column layout each column will be 195.2px - 20px left padding - 20px right padding = 155.2px ~ 155px
Now there should be enough space for 5th column
Re: Positioning issue
Thanks for that.
Though I tried it before, it doesn't work that time. And why is it so. Cause I overlooked something.
Did a double closing for </div> and the display got messed up.
Thanks for this and I relooked and found my problem.
Though I tried it before, it doesn't work that time. And why is it so. Cause I overlooked something.
Did a double closing for </div> and the display got messed up.
Thanks for this and I relooked and found my problem.