I tried to modify some element with the following text "Connect with Deepak" in my page but without little luck. Please help me to edit the CSS:
#media (max-width:560px) {
.vc_sep_holder .vc_sep_holder_l {
max-width: 320px;
margin:auto;
}}
#media (max-width:560px) {
.vc_sep_holder .vc_sep_holder_r {
max-width: 320px;
margin:auto;
}}
The two line always appear in mobile. Can someone provide advice to where I make mistake?
add this in your media query: .vc_separator.vc_sep_double {width:100%;}
This solved my issue. Thanks to everyone !
#media (max-width:560px) {
.vc_separator.vc_sep_double {width:100%;}
}
I would suggest trying margin: 0px auto
Edit:
.vc_separator.vc_sep_double .vc_sep_line {
border-bottom: 0px;
}
Related
I’ve tried everything and it just won’t work.
This was my last attempt.. but it didn't move a pixel
#media screen and (min-width: 769px) {
.shop #fullscreen-header .featured-slide .entry-title {
float: left;
margin-left: 150px;
}
}
Could someone please, help me with that?
Our shop page using minimog is posher.com.br/shop
Thank you in advance!
You could use flex.
.heading {
display: flex;
}
This is how it looks on my side.
I created this sidebar with reactjs and with a certain fixed number of px for each element this caused the sidebar to not be reponsive. Unfortunately I'm not that good at CSS. Can someone help me transform this code to reponsive please ?
thanks in advance :)
code is here
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
code
Use max-width in your sidebar.css instead of max-height.
#media screen and (max-width: 600px) {
.sidenav {
padding-top: 15px;
width: 100px;
}
.sidenav a {
font-size: 14px;
}
}
Intro
this is similar to this question but unfortunately the answer only applies to greasmonkey (which only works on firefox). Further, this was asked on the stylish forum but the answer was ambiguous.
Question
I want to remove the left column in the azure help page and
expand the main body to make it cover the widht of the screen.
The first part can easily be done by this
#sidebarContent {display:none}
How ever the second part must conver this
media (max-width: 1199.99999px)
to this
media (max-width: 100%)
But I have no idea how to do that using stylish.. ideas?
To override a media query you just need to load another media query - that also applies to your device - after it.
Well...you want a blunt media query that applies to everything. The best way is to use #media (min-width: 1px) since that includes all devices.
Now, put it all together - along with some other CSS cleanups like padding and margin removal and setting a new width for .mainContainer and you get this
#sidebar {
display: none;
}
#media (min-width: 1px) {
.mainContainer {
margin: 0 auto;
width: 100vw;
padding: 0;
}
body>.container {
padding: 0;
}
}
New code: (with different selector for width)
#sidebar {
display: none;
}
#media (min-width: 1px) {
.mainContainer { /*example styles*/
margin: 0 auto;
width: 100vw;
}
body>.container {
padding: 0;
}
body>.mainContainer>main {
max-width: 100vw!important;
}
}
You still have to adjust the padding to your preference as setting the padding to 0 breaks the design a little bit but this should be good starting point.
Before:
After:
I wrongly edited some code in css media queries a time ago and now on mobile devices the logo of my website look like this:
.
The url of my page is: SplashYourCash.com
I cant get it to back to fill out the right space, maybe someone of you has an idea?
much greetings,
herrsocke
If you add the following CSS to your mobile media-query:
.navbar-toggle {
margin-right: 0;
}
It should fix it.
Try this at the bottom of your style.css file
#media all and (max-width: 380px) {
.logo {
height: 62px;
}
.logo.logoshrink {
height: 50px;
}
.navbar-toggle{
margin-top:27px;
margin-right:0;
}
.navbar-toggle.mt8{
margin-top:8px;
}
}
I think I am going insane. I cannot figure out why this pricing field all of a sudden stacks below 641 px. Can anyone help me out?
I think I need a new set of eyes to look at the code!
http://forfattarskola.staging.wpengine.com/bildkort/bestall-bildkort/
Good
Bad
Without the code to look at and just the page source it looks like you need to change this css class to use inline-block and not block
#media only screen and (max-width: 641px) .gform_wrapper .ginput_container span {
display: inline-block;
}
try:
#gform_fields_4 li {
min-width: 200px;
}
#gform_fields_4 li * {
display: inline-block;
}
i tested this on your page through chrome debug, and seems to work. add this CSS to page and voilá!