Mobile Theme Customization
-
Hello, I am using the expound theme and i would like to know if there’s a solution for the following request.
Since I been using plenty of CSS snippets to make the website look better, I noticed that some of that CSS coding translates into the mobile theme. If you happen to check the website on a mobile device you will see that the follow button and the social media icons that are on the footer of the page kinda interfere with the copyright text on the mobile device. Is there a way to fix that? basically for the mobile theme not to have many of those CSS changes?
The blog I need help with is: (visible only to logged in users)
-
Hi, my suggestion would be to move all your widget relocation rules into a media query set at min-width: 800px and then below that point the relocated widgets would move back into the sidebar and align with the other widgets.
Alternately, you could create another couple of media queries to try and adjust the location of them for smaller screens, but this can end up being a never ending battle. If you decide to go this way, this would be a starting point.
@media screen and (max-width: 800px) { .site-info { padding-top: 50px; } #follow_button_widget-3 { bottom: 130px; } #wpcom_social_media_icons_widget-3 { bottom: 116px; } } -
Thanks that’s exactly what i was looking to fix that.
Is there a snippet to add a text below the blue link button in the featured post section but for that text to be there at all times regardless of me updating new featured posts?
-
Great!
Due to the way the button is done in the CSS and HTML, we can add some text after the button text itself, but it will be within the blue area of the button. See what you think of this.
.sticky .entry-summary .button-primary:after { content: "This is some text"; display: block; } .sticky .entry-summary .button-primary { text-align: center; } -
Perfect, thank you very much.
If you look at the footer of my page, there’s gonna be a follow blog button to the left and social media icons to the right.
Once i put a title to those two widgets, the title seems to be behind the widgets. Is there a snippet to make those two widgets at the footer have the same title padding as the widgets that are on the widget area? -
-
I already added the title text to the social icons on the right section of footer. The follow button doesn’t allow me to add a title text.
-
-
- The topic ‘Mobile Theme Customization’ is closed to new replies.