Tagged: x
-
AuthorPosts
-
December 4, 2016 at 3:35 pm #1280730
Melissa437ParticipantHi,
There are a few things I’m having problems with but if i add any code to the customise, nothing is actionned…Would you mind logging into my site and seeing what the prob;em is?
I really would like to:
– remove all the borders on the text in blockquote
– make the font size smaller on feature list – to match the paragraph textIf you could please help that would be super marvellous!!
December 4, 2016 at 3:36 pm #1280731
Melissa437ParticipantThis reply has been marked as private.December 4, 2016 at 7:43 pm #1280973
LelyModeratorHi Melissa,
Please double check the credentials. It says invalid username when I tried to login.
For CSS issues, make sure that all open curly brace { have corresponding closing curly brace }. Missing closing means CSS syntax error.December 4, 2016 at 11:50 pm #1281177
Melissa437ParticipantThis reply has been marked as private.December 5, 2016 at 12:16 am #1281183
RupokMemberHi there,
Thanks for writing back! You can add this under Custom > CSS in the Customizer.
.x-blockquote { border: medium none; }Are you referring this as feature list? – http://prntscr.com/dfh93z
You can use this CSS to control the font-size :
.x-feature-box-title { font-size: 20px; }Hope this helps.
Cheers!
December 5, 2016 at 12:18 am #1281184
Melissa437ParticipantMy problem is that i am adding code but nothing works…. Would you mind going into the customiser and checking what the issue is?
December 5, 2016 at 12:25 am #1281186
LelyModeratorHi Melissa,
Look for this part on your custom CSS:
@media (max-width: 1210px) { .x-navbar .x-nav-wrap.desktop { display:none; }Closing curly brace for the media query is missing. So custom CSS after that part will be included inside the media query. If you’re default screen size right now is more that 1210px, all those CSS below above code will not work. Only when you resize the screen to smaller size. Update above to this:
@media (max-width: 1210px) { .x-navbar .x-nav-wrap.desktop { display:none; } /*Then move other CSS here that should work only on screesize 1210pc or less*/ }Hope this helps.
December 5, 2016 at 2:39 am #1281269
Melissa437Participantthanks thats great:)
How do i remove the symbol on the blog page?
December 5, 2016 at 2:46 am #1281274
ChristopherModeratorHi there,
Please add this :
.entry-title:before { content: "" !IMPORTANT; }Hope it helps.
December 5, 2016 at 2:51 am #1281275
Melissa437ParticipantThanks, but it is this I would like to remove:
Also, I would like the code to change the font and size of the titles on the blog?
December 5, 2016 at 3:01 am #1281286
ChristopherModeratorHi there,
Are you trying to remove opacity and icon? if so, add following code :
a.entry-thumb:hover img { opacity: 1; } .blog .entry-thumb:before,.archive .entry-thumb:before { content: ""; }To change font family, color and size, add this :
.x-iso-container-posts.cols-3 .entry-title { font-size: 153% !important; font-family: cursive; } .x-iso-container-posts.cols-3 .entry-title a { color: red; }Hope it helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1280730 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
