Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@anamaggarwal1991gmail-com: Sorry for the late reply.
Why are you using both px and rem? Use px only and try again. Please use the following CSS:@media screen and (min-width: 961px) { #primary { width: 530px; } #secondary { width: 300px; } } @media screen and (min-width: 1025px) { #primary { width: 590px; } #secondary { width: 300px; } } @media screen and (min-width: 1153px) { #primary { width: 670px; } #secondary { width: 310px; } } @media screen and (min-width: 1281px) { #primary { width: 750px; } #secondary { width: 320px; } } @media screen and (min-width: 1345px) { #primary { width: 770px; } #secondary { width: 360px; } }Regards,
MaheshMahesh
MemberOctober 7, 2016 at 2:44 pm in reply to: Change color content background only on my first page #101092Mahesh
Member@micwilly: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.home .hentry { background-color: #ff00ff; }Note: Please change the color as desired.
Regards,
MaheshMahesh
Member@micwilly: Please add the following CSS:
@media screen and (min-width: 1281px ) and (max-width: 1684px) { .two-columns #secondary{ width: 24%; } }Regards,
MaheshMahesh
Member@micwilly: I checked your site and it seems to be working fine. Displaying fine on my mozilla browser in 100% view.
Regards,
MaheshMahesh
Member@debswebs: I have installed the latest version of the theme and now the lightbox is working fine. I also have created a Gallery Test Post to check if the sidebar is working or not and its working fine.
Hope this solves the issue.Regards,
MaheshMahesh
Member@mistye: You have an error in your Custom CSS. There is a missing
}after following code:#content .entry-summary img.wp-post-image, #content .entry-content img { border: none; max-width: 100%; padding: 0;Please correct it first.
And concerning the space between menu and content, add the following CSS:
#main { padding-top: 0; } #content .entry-header { display: none; }Hope this helps.
Regards,
MaheshMahesh
Member@eckh20: I check by adding a gallery with the theme, and its working all fine. Go to Dashboard=> Appearance=> Theme Options and make sure Disable Responsive Design? is unchecked in Responsive Design.
Let me know if any problem.Regards,
MaheshMahesh
Member@nschoeggl: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
@media screen and (max-width: 960px ) { #sidebar-header-right { display: none; } }Regards,
MaheshMahesh
Member@nikibranting: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and make sure, you have selected Right Sidebar in Sidebar Layout Options
Let me know further.Regards,
MaheshMahesh
Member@emielstubbe: Please post in your site url.
Regards,
MaheshMahesh
Member@strat76: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
@media screen and (min-width: 661px ) { .site-branding .site-logo { float: none; } #site-navigation { float: none; } .site-branding { float: none; } } @media screen and (max-width: 660px ) { #site-navigation { display: none; } }Let me know if any problem.
Regards,
MaheshMahesh
Member@brandonsm: You have following CSS in your
gaispc/style.css..catchbase-nav-menu .children { left: 0 !important; }This is causing the issue. Please remove it. Let me know if any problem.
Regards,
MaheshMahesh
Member@nschoeggl: I’m afraid this is not possible.
how can I turn off social media icons/search box mobile devices
Please post in your site url so I can help you further.Regards,
MaheshMahesh
Member@fredericf: Yes, this is possible. You’ll need to create a child theme for this. You can find more details on creating child theme HERE. Then in your child theme override the following function:
function studio_site_title_description() { ?> <div id="site-header"> <h1 class="site-title"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <?php bloginfo( 'name' ); ?> </a> </h1> <?php //Display blog description / site tagline $blogdescription = get_bloginfo( 'description' ); if ( '' != $blogdescription ) { ?> <h2 class="site-description"> <?php echo $blogdescription; ?> </h2> <?php } ?> </div><!-- #site-header --> <?php }Hope you understand.
Regards,
Mahesh -
AuthorPosts
