Home Forums Support Questions

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #205084
    Jorge

    I’ve finally finished my project with generatepress but now i have several questions:

    1. If update php on my server, does this affect press generate? and others plugins?

    2. How i can change the size h3 only for mobile view?

    3. I modified the content space as you indicated me to adjust the map to full width and it worked.
    But now, in the mobile view, the text of the content does not have margins. As i can change this?

    4. If activated the Sticky menu for mobile it does not show the same menu in the web view, but it shows me all the pages that i have created. How i can do to show the same menu?

    5. I had to use a table in a section to match the content as i like it to be: http://www.pizzeriaelhorno.com/contacto
    As i can make this table responsive? I wish the right column come down below.

    I write all in the same message not to open more new. Thanks!

    #205117
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    1. I can’t speak for other plugins, but GP is compatible up to the latest version of PHP (7).

    2. With this CSS:

    @media (max-width: 768px) {
        h3 {
            font-size: 20px;
        }
    }

    Adding CSS: https://generatepress.com/knowledgebase/adding-css/

    3. I assume you added CSS to remove the left and right padding from the sections? Best thing to do here is to give your section with the map a class and then target that class specifically, while leaving the other sections with the default padding.

    4. Set the theme location of your menu in “Appearance > Menus” to the “Slideout menu” as well as primary menu.

    5. Use a plugin like this instead of a table: https://wordpress.org/plugins/lightweight-grid-columns/

    Hope this helps ๐Ÿ™‚

    • This reply was modified 7 years, 9 months ago by Tom.
    #209770
    Jorge

    1. ok, i understant.

    2. perfect!

    3. I understand what you tell me because i know some html and CSS. I modified space for all sections … a long time ago not play code and have respect because the web is finished. Could i help make correctly?

    4. perfect!

    5. perfect!

    thanks Tom!!!

    #209811
    Tom
    Lead Developer
    Lead Developer

    3. I would keep the spacing for all sections, then remove it for that specific section.

    Say you give that section a class of “my-map”:

    .my-map .generate-sections-inside-container {
        padding-left: 0;
        padding-right: 0;
    }

    Hope this helps ๐Ÿ™‚

    #209950
    Jorge

    OK i understand. I’d have to rename this class? or as?

    #210032
    Tom
    Lead Developer
    Lead Developer

    You can name it whatever you like (the .my-map part).

    #210286
    Jorge

    Sorry, forgot to stick the code:

    This is the section that contains the short code map. This would have to rename?

    thanks for your help.

    #210346
    Tom
    Lead Developer
    Lead Developer

    You would put your class into the section settings: http://screencast.com/t/OJSsgu8cuno

    Then you can apply CSS to that specific section using that class.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.