coreyscott
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display DIV ID on pageYes its possible using the web developer plugin for firefox. https://addons.mozilla.org/en-US/firefox/addon/web-developer/
Right click on the page and go to Web Developer -> Information -> Display id & Class Details
Forum: Themes and Templates
In reply to: [Spasalon] Changing header text color, pink separator bar.Also for call us
.spa_tag span { color: #D61841; }
and the phone number
.spa_tag span p { color: #9C253E; }
Forum: Themes and Templates
In reply to: [Spasalon] Changing header text color, pink separator bar.Yes for the other pages add the following
.pink-container p { border-left: 1px solid #F05D7D; color: #FCCED7; }
Forum: Themes and Templates
In reply to: [Spasalon] Changing header text color, pink separator bar.The code above is missing a closing bracket.
Updated code
.slidesDescription p { border-left: 1px solid #F05D7D; color: #FCCED7; }
Forum: Themes and Templates
In reply to: [Spasalon] Changing header text color, pink separator bar.Hi,
Add the following code to your custom css and change the border-left and color to whatever you want..slidesDescription p { border-left: 1px solid #F05D7D; color: #FCCED7;
Forum: Themes and Templates
In reply to: [MN Flow] sticky post background colorAdd this to your custom css and change the background from red to whatever you want.
.featured .no-thumbnail, .featured .no-thumbnail h3 { background: red; }
Forum: Themes and Templates
In reply to: [MN Flow] sticky post background colorWhat’s the link to your website?
Forum: Themes and Templates
In reply to: Custom Fonts not working on other browsers – cssTake a look at these troubleshooting videos for working with @font-face
Forum: Themes and Templates
In reply to: [zAlive] Alter height of the sliderIn order for the images to stay proportional change the last code you added to
.carousel-inner img { height: auto; width: 100%; }
Now when you upload your images for the slider crop them to your desired height but you have to make sure the image is large enough so it won’t stretch.
Let me know what happens.
Forum: Themes and Templates
In reply to: [zAlive] Alter height of the sliderOkay try adding this to your css
.carousel-inner img { height: 340px; width: auto; }
Forum: Themes and Templates
In reply to: [zAlive] Alter height of the sliderHi
Try adding the code below to your custom css. Notice the closing brace that I added which closes the css declaration.
.flexslider .slides img { height: 340px; width: auto; }
Forum: Themes and Templates
In reply to: [Vantage] Issue with Footer WidgetsIt might be a good idea to contact the theme author about the footer widget.
Forum: Themes and Templates
In reply to: [Vantage] Issue with Footer WidgetsFor the landing page you might want to apply some padding to main image by adding the following code to your custom css file
.home .entry-content { padding: 165px 0; }
Forum: Themes and Templates
In reply to: Advice ! Best Width For Content & Sidebar ….Hey,
Check out css-tricks.com
The sidebar is nice and wide but not too wide to distract you from the main content.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Social Media Icons not aligningHi,
Try adding the following to your custom css
a.social-icon { vertical-align: middle; }