SNAP THEME Customization
-
Hi There!
I am building a site (not a blog) using snaps theme on wordpress.com. There are a few little things that I would like to change, but I am finding really hard to do.
01. Background Colour
Firstly, I would like to change the background colour to a dark grey and font colours to white. Although I have an option to change the background colour, it looks like there is an semi-transparent white layer between the background and the page content (videos, thumbnails, etc..). So when I choose a different background colour it changes mainly the frame of the page, alway keeping a milky white(ish) background.
02. Font Colour
There are no options to change fonts colour.
03. Menu Colour.
I could be interesting if I could also change the menu bar colour.
Most of the CSS I want to edit are in regards to elements in the project pages (http://robprado.com/portfolio/’name-of-the-project’/)
04. I would like to hide the links/text ‘previous’ and ‘next’ projects.
05. I would like to hide the text ‘comments are closed.’
06. I would also like to hide the grey line bellow the video.
07. Alignment
The video is not aligned properly (compared to the main menu), it should be at the centre of the page. I guess there is a empty column/field (probably a side bar/menu) where it should have the project type links. I do not wish to use this side field, but even empty it affects the composition/alignment.
Sorry about the silly question. I am really bad with codes and stuff. I hope those changes are possible!
I would really appreciate if you guys could help me with those issues!
Thanks a lot
Cheers
The blog I need help with is: (visible only to logged in users)
-
Hi betoprado
Try the following custom CSS.
Select Appearance > Customize > CSS from your Admin Dashboard and enter the custom CSS there.
NOTE: You need to be on the WordPress.com Premium Plan for custom CSS to save. You can only preview custom CSS on the free plan.
-
-
-
-
04. I would like to hide the links/text ‘previous’ and ‘next’ projects.
05. I would like to hide the text ‘comments are closed.’
06. I would also like to hide the grey line bellow the video.
.post-navigation { display: none; } .nocomments { display: none; } -
-
03. Menu Colour.
I could be interesting if I could also change the menu bar colour.
.main-navigation { background: rgba(35, 134, 166, 0.88); } -
-
This should do it :)
.single .entry-content-wrap { float: none; margin-left: auto; margin-right: auto; } -
Thanks so much Gavin!
That fixed the video alignment. However, the title (above the video/content) is still not aligned properly.
The solution might be something similar to the above code.
-
-
Hey Gavin,
I tried the code above, based on the one you sent and that made the title aligned to the left with the video, but I could not make the title centred as everything else. Any idea?
-
It is actually working quite well aligned to the left. I was just wondering if it would look better centred as everything else.
Thanks again, Gavin! It is looking exactly as I wanted to be!!!
Cheers
-
Thanks for the feedback.
This should do it.
.single .entry-header { float: none; margin-left: auto; margin-right: auto; text-align: center; } -
-
- The topic ‘SNAP THEME Customization’ is closed to new replies.