Home › Forums › Pro Themes › Magazinews Pro › Editing CSS
- This topic has 3 replies, 2 voices, and was last updated 4 years, 9 months ago by wensolutions.
-
AuthorPosts
-
January 28, 2020 at 3:36 pm #115267Christian DiMarzioParticipant
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
January 29, 2020 at 3:29 am #115303wensolutionsKeymasterHello,
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.
January 29, 2020 at 7:06 am #115320Christian DiMarzioParticipantThank 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?
January 30, 2020 at 12:49 am #115352wensolutionsKeymasterHello,
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.
-
AuthorPosts
- You must be logged in to reply to this topic.