Number of columns
-
Hello,
I’d like to add make my “Front Featured Page #2” four columns instead of three. I’ve added the child pages I need.
Your help me with that will be most appreciated!
Michael
The blog I need help with is: (visible only to logged in users)
-
Howdy mrbroom ,
Here is more information about your theme which you are using ,
https://wordpress.com/theme/fortuneI will tag the staff to see if the CSS customisation is possible for providing the extra columns you are looking for. As all the theme options are visible on the theme page.
Regards
-
Hi @pavanraheja, in cases like this, where someone is just needing help with CSS, there is no need to modlook the threads. Each day I start with the oldest threads in the CSS forum and work my way to the newest so I nearly always see all threads in the forum.
@mfbroom, add the following to the bottom of your custom CSS and see what you think.
@media screen and (min-width: 992px) { .featured-page-two .grid-sep { display: none; } .featured-page-two .grid-item { width: 25%; } } -
@thesacrepath : Noted and sounds good .. ! I ll just mark them as CSS customizations..! Thanks for the inputs..! :)
-
Thanks, @thesacredpath!
I’m trying to learn CSS. Why the “@media screen” entry? The 2nd one I understand.
-
Media Queries allow us to set breakpoints so that we can apply CSS only to a certain range of window/screen widths. There was a separator line between the top three and the bottom single entry and I needed to get rid of that in order for the 4th entry to flow up and beside the other 3. At 991px and narrower, the originally theme went to 2 columns of 2 and it hid that separator line, so I used the Media Query to make it disappear at 992ps and wider.
-
-
- The topic ‘Number of columns’ is closed to new replies.