Home Forums Pro Themes Magazinews Pro Editing CSS

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #115267
    Christian DiMarzio
    Participant

    I have a few different requests/questions on things I want to change in customizing my theme. However, what would make this easier would just be the ability to actually edit the CSS of the theme. In the wordpress dashboard, under Appearance, the ‘Edit CSS’ button exists, but clicking it just takes me to add Additional CSS – not what I want to do, and doesn’t let me edit what’s already there.

    Is there any way for me to actually access this with this theme that I’m missing?

    Alternatively, some of the things I’d specifically like to do are,
    1) Change the layout so the content takes up the full margins (no background image/padding)

    2) Remove the image/link in the footer to the Magazinews Pro site – I paid for the pro theme, I shouldn’t be forced with this watermark

    3) Change the color of the Primary and Secondary menu bars

    #115303
    wensolutions
    Keymaster

    Hello,

    In the child theme, you can add the CSS or extra code as per your requirement. You can create a child theme by referring to the documentation below,

    https://wptravel.io/how-to-create-a-child-theme/

    Otherwise, you have to add edit by putting code in the Additional CSS section.

    Regarding your other queries,

    Response 1. In the latest version of the theme, you can change the layout following the path Admin Panel > Appearance > Customize > FrontPage > Main Slider and enable the Classic slider option.

    Response 2. To remove the image/link in the footer section you can add CSS following the path Admin Panel > Appearance > Customize > Theme Options > Footer Options and remove the image and the details as per the requirement.

    Response 3. To change the color of the top menu you can add CSS following the path Admin Panel > Appearance > Customize > Additional CSS

    #top-navigation {
        background-color: #212121;
    }

    To change the color of the main menu you can add CSS following the path Admin Panel > Appearance > Customize > Additional CSS

    #site-navigation {
        background-color: #212121;
    }

    Hope this helps.

    If you have further queries, let us know.

    Thank you.

    #115320
    Christian DiMarzio
    Participant

    Thank you! This has certainly helped me out.

    Another question, where would I go/what CSS would I add to change the font size or font family of the site Title + Tagline in the header?

    #115352
    wensolutions
    Keymaster

    Hello,

    As per your query regarding changing the font size or font family of the site Title + Tagline in the header, you can add CSS following the path Admin Panel > Appearance > Customize > Additional CSS,

    .site-title {
        font-family: cursive;
        font-size: 38px;
    }
    .site-description {
       font-size: 35px;
       font-family: cursive;
    }

    You can adjust font size and family as per your requirement.

    Regards.

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